English | >> Português << | По-русскиadultinternetusers > Tutorials > Surfing tutorial
>> Exemplo 15 << | Anterior | Próximo | Conteúdos

Descrição


O alinhamento do texto pode ser indicado com a propriedade "text-align" com os valores "left" (à esquerda), "right" (à direita), "center" (centrado) e "justify" (justificado, ou seja, ambas as margens alinhadas)

>> Case 1 <<
Documento HTMLfolha de estilos CSS

<p class = "CCC">Center</p>
<p class = "RRR">Right</p>
<p class = "LLL">Left: This is an example of a long text. This is an example of a long text. This is an example of a long text </p>
<p class = "JJJ">Justify: This is an example of a long text. This is an example of a long text. This is an example of a long text </p>
body {color:black; background-color: white}

.CCC   {text-align: center}
.RRR   {text-align: right}
.LLL   {text-align: left}
.JJJ   {text-align: justify}

Resultado do Navegador