background-color: <value>
Like bgcolor="#ffffff"
background-image: <value>
Like background="url"
background-repeat: repeat or repeat-x or
repeat-y or no-repeat
No HTML equivolent. Really cool property!
repeat is like normal tiling
repeat-x repeats only on the horizontal axis
repeat-y repeats only on the vertical axis
no-repeat, well, dosen't repeat!
background-attachment: scroll or fixed
Tells the background to scroll with the content, which is normal
html, or stay fixed in the background while the content scrolls.
Works only on body backgrounds, not in tables.
background-position:
<percent> or <length>
or
left or right or center
and or
top or center or bottom
Positions image in block-level element.
Can specify both vertical and horizontal position, but give horizontal
position first followed by vertical.
background: <background-color> and/or <background-image>
and/or background-repeat and/or <background-attachment>
and/or <background-position
Shortcut notation for all background properties.
|