CSS Reference
Common Terms:
inherit
- Inherits this property from its parent element.
initial
- Sets this property to its default value
Background Properties
element {
background-color: color | transparent;
background-image: url("paper.gif");
background-position: anywhere;
background-repeat: repeat | repeat-x | repeat-y | no-repeat;
background-origin: border-box | padding-box | content-box;
background-clip: border-box | padding-box | content-box;
background-attachment: scroll | fixed | local;
}
element {
background: 'color' 'image' 'position'/'size' 'repeat' 'origin' 'clip' 'attachment' | initial | inherit;
}
Overflow
element {
overflow: visible | hidden | scroll | auto;
overflow-x: visible | hidden | scroll | auto;
overflow-y: visible | hidden | scroll | auto;
}
Lists
.list {
list-style-type: 'there are many different style types' | none;
list-style-position: inside | outside;
list-style-image: url("list-marker.gif");
}
.leest {
list-style: 'list-style-type' 'list-style-position' 'list-style-image' | initial | inherit;
}