Tengo las siguientes clases CSS:
Código PHP:
.justify { text-align: justify !important; }
Código PHP:
p img {margin: 5px; padding: 3px; text-align: justify !important;} /* espacio entre el texto y la imagen */
img.right {float: right; text-align: justify !important;} /* Para alinear a la derecha */
img.left {float: left; text-align: justify !important;} /* Para alinear a la izquierda */
Miren el ejemplo
Código HTML:
<td class="justify"><img src="imagen.jpg" class="right"> Texto texto texto</td>
Salu2