Separadores de texto
-
Uso da tag <hr> (linha ou reta horizontal)
Esta tag tra�a uma linha para separa��o do texto em se��es. Possui os
atributos: align, width, size e noshade.
O atributo align define o alinhamento � esquerda/left, centro/center
(default) ou � direita/right, mas s� � empregado em conjunto com width.
O atributo width define a largura em n pontos ou n% da
largura da janela do navegador. Default: width=100%.
O atributo size define a altura ou espessura em n pontos.
Default: size=0.
O atributo noshade define o sombreamento (default=n�o) e se aplica
apenas com size, equivalendo-se a color="black"/"#000000".
O atributo color
define a cor da reta (default=preto).
Exemplos:
texto<hr aligh="center" width=80%>texto ou simplesmente texto<hr width=80%>texto
texto texto
texto<hr align="left" width=40%>texto
texto texto
texto<hr align="right" width=10%>texto
texto texto
texto<hr size=10 width=500>texto
texto texto
texto<hr size=60 width=250>texto
texto texto
texto<hr size=70 width=25>texto
texto texto
texto<hr size=80 width=25 noshade>texto
texto texto
texto<hr size=90 width=250 align="left" color="lightgreen">texto
texto texto
|