Capítulo 4 - Propriedades " StyleSheet "
Tamanho da Fonte
| Sintaxe CSS | font-size |
| Valores possíveis | tamanho-absoluto,tamanho-relativo,largura,porcentagem |
| Valor inicial | medium |
| Aplicado para | todos os elementos |
INSTRUÇÕES DE ESTILO
Relativo
.pequeno { font-size: 8pt; }
.medio { font-size: 14pt; }
.grande { font-size: 18pt; }
Absoluto
.xxsmall { font-size: xxsmall; }
.xsmall { font-size: x-small; }
.small { font-size: small; }
.medium { font-size: medium; }
.large { font-size: large; }
.x-large { font-size: x-large; }
.xx-large { font-size: xx-large; }
DOCUMENTO HTML
<SPAN CLASS= "pequeno ">8 pontos</SPAN>
<SPAN CLASS= "medio ">14 pontos</SPAN>
<SPAN CLASS= "grande ">18 pontos</SPAN>
<P>
<SPAN CLASS= "xxsmall ">xx-small</SPAN>
<SPAN CLASS= "medium ">x-small</SPAN>
<SPAN CLASS= "large ">small</SPAN>
<SPAN CLASS= "x-large ">medium</SPAN>
<SPAN CLASS= "xx-large ">large</SPAN>
<SPAN CLASS= "xx-large ">x-large</SPAN>
<SPAN CLASS= "xx-large ">xx-large</SPAN>
EXIBIÇÃO NO NAVEGADOR
8 pontos 14 pontos 18 pontos
xx-small x-small small medium large x-large xx-large