direction:rtl;
background
background-color |
|
color-rgb
color-hex
color-name
transparent
inherit |
background-image |
|
url(URL)
none
inherit |
background-repeat |
Sets if/how a background image will be repeated |
repeat
repeat-x
repeat-y
no-repeat
inherit |
background-attachment |
Sets whether a background image is fixed or scrolls with the rest of the page |
scroll
fixed
inherit |
background-position |
Sets the starting position of a background image |
top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right x% y%
xpos ypos
inherit
|
. Hide an Element
visibility:hidden hides an element, but it will still take up the
same space as before. The element will be hidden, but still affect the layout.
display:none hides an element, and it will not take up any space.
The element will be hidden, and the page will be displayed as the element is not
there
|