Color

color :[color]

Indica el color del texto.

color:red;

Para más información, vea los códigos de colores.

Background

background: [background-color] [background-image [background-repeat [background-position]] [background-attachment]]

Indica las propiedades para el fondo. Se compone de las siguientes propiedades:

Background-color

background-color: [background-color]

Indica el color del fondo.

background-color:#eee;

Para más información, vea los códigos de colores.

Background-image

background-image: url('[background-image]')

Indica la imagen de fondo.

background-image:url('image.png');

Background-repeat

background-repeat: [repeat | repeat-x | repeat-y | no-repeat]

Indica si la imagen debe repetirse y en que dirección.

background-repeat:repeat-x;

Background-position

background-position: [top | center | bottom  left | center | right] | [x y]

Indica la posición en que comienza a ser dibujada la imagen de fondo.

background-position:center center;
background-position:10px 20px;
background-position:50% 20%;

Background-attachment

background-attachment: [scroll | fixed]

Indica si el fondo debe moverse junto con la página o permanecer fijo.

background-attachment:fixed;
background:#9cf url('background.png') no-repeat bottom right fixed;

[Un proyecto de Ayotli Diseño Web]