Justificar css

Necesito la manera de justificar el texto con css. Muchas gracias.
Respuesta
1
Este seria un ejemplo que justificaría todas las etiquetas. Incluye las siguientes lineas del style dentro del head.
<style type="text/css">
<!--
.just {text-align: justify;}
-->
</style>
Dentro del body coloca esta tabla
<table border=1 width=350>
<tr>
<td> Este texto NO está justificado. Este texto NO está justificado. Este texto NO está justificado. Este texto NO está justificado. Este texto NO está justificado. Este texto NO está justificado. Este texto NO está justificado.
</td>
<td class="just"> Este texto SI está justificado. Este texto SI está justificado. Este texto SI está justificado. Este texto SI está justificado. Este texto SI está justificado. Este texto SI está justificado. Este texto SI está justificado.
</td>
</tr>
</table>
Es muy sencillo pero si tienes alguna duda consúltame de nuevo.
Gracias, ya creía que era así pero no estaba seguro. Ademas había alineado a la izquierda el párrafo en el documento html, lo he quitado y ya está todo resuelto.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas