You are on page 1of 2

Cores e Fundos

color: #ff0000;
background-color: #FFCC66;
background-image: url("imagem.gif");
background-repeat: no-repeat; (repeat-x,repeat-y;repeat)
background-attachment: fixed; (scroll)
background-position: right bottom;

{
background-color: #FFCC66;
background-image: url("butterfly.gif");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
}

background: #FFCC66 url("imagem.gif") no-repeat fixed right bottom;


(Abreviação)
Fontes

font-family: arial, verdana, sans-serif;


font-style: italic; (normal, italic ou oblique)
font-weight: bold;(normal ou bold)
font-size: 30px;

p{
font-style: italic;
font-weight: bold;
font-size: 30px;
font-family: arial, sans-serif;
}

p{
font: italic bold 30px arial, sans-serif;
} (abreviação)

Textos

text-indent: 30px; (recuo a primeira linha de um parágrafo)


text-align: right; (left,right,centred ou justify)
text-decoration: underline;
letter-spacing: 6px; (espaço entre os caracteres)
text-transform: uppercase;(capitalize,none,lowercase)

Links

You might also like