Comment ajouter une photo en utilisant CSS à côté d'un paragraphe en HTML

<div id='container'>
 <img src='someimage.jpg' style='float: left;'/>
 <p>some text (that will now wrap around the image</p>
</div>
RM