Creo que con float:left es suficiente
Código HTML:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Documento sin título</title>
<style type="text/css">
.contenedor{
float:left;
}
.contenedor img{
float: left;
}
</style>
</head>
<body>
<div class="contenedor">
<img src="prueba.jpg">
<p>bla bla bla bla bla</p>
</div>
</body>
</html>
Te he puesto un ejemplo en www'aaservers'org/testfloat, espero te sirva.