Tengo una caja con una imagen y un texto q ocupa el espacio sobrante algo asi:
--------------------------------
| ---------- texto texto texto texto |
| |..imagen..| texto texto texto texto |
| |..imagen..| texto texto texto texto |
| |..imagen..| texto texto texto texto |
| |..imagen..| texto texto texto texto |
| ---------- texto texto texto texto |
| texto texto texto texto texto texto |
| texto texto texto texto texto texto |
--------------------------------
El código resumido sería algo así.
Código HTML:
<div style="width:47%; float:left;"> <div style=" float:left; margin-right:8px; margin-top:8px;"> <img src="" alt="" /> </div> <div style="text-align:justify;"> <span style="text-align:justify;"> ¡¡¡¡¡¡¡¡¡¡¡¡aqui va el texto!!!!!!!!!! </span> </div> </div>
El objetivo sería justificar ese texto, ya que al parecer al no tener definido un ancho no es capaz de justificarlo
gracias de antemano!!!