Hola:
Tengo las siguientes clases CSS:
Código PHP:
.justify { text-align: justify !important; }
para poner el texto justificado y esta otra:
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 */
para alinear el texto a la derecha o a la izquierda de una imagen. La cosa es que cuando aplico ambos estilos a un elemento TD pierdo la clase de imagen.
Miren el ejemplo
Código HTML:
<td class="justify"><img src="imagen.jpg" class="right"> Texto texto texto</td>
Es que acaso debe tener un orden estricto o algo por el estilo las clases CSS??
Salu2