Home   CSS   Font-Properties   Text-Properties   Box-Properties   List-Style   Pseudo-Units


Color:

 
   span style="color: red; font-weight: bold;"
   span style="color: 006633; font-family: system;"
   span style="color: 00f; font-style: italic; font-size:1.1em;"

Background Color:

color | transparent
   span style="color: red; font-weight: bold; background-color: white"
   span style="color: 006633; font-family: system; background-color:#fffc30"
   span style="background-color:3f5; font-style: italic; font-size:1.1em;"

Background Image:

 
 
   background-image: url('Images/bg_header.gif')
 
 background-image: url('Images/bg_tv.gif')  

Background Repeat:

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

Background Attachment:

scroll | fixed
 
 background-attachment:scroll (default)
 background-attachment:fixed

Background Position:

(top | center | bottom) | (left | center | right)
 
 background-position: 0% 0% (default)
 background-position: 0px 35px
 background-position: 25px 0px
 background-position: 25px 35px

Background:

background-color | background-image | background-repeat |
background-attachment | background-position
 
 background: white url('Images/bg_header.gif') repeat-x bottom
 background: white url('Images/right_header.gif') no-repeat center