Appendix C CSS Property Reference^615
Table C.1Cascading style sheet properties (continued)
Property
list-style-image
Common Values: URL keyword with valid image file name
Usage: Configures an image to replace “bullets” in an XHTML list.
Example: list-style-image:url(myimage.gif);
list-style-type
Common Values: "none","disc","circle","square","decimal","lower-roman",
"upper-roman","lower-alpha","upper-alpha"
Usage: Configures the type of “bullet” (list item marker) for an element in a list.
Example: list-style-type:circle;
margin
Common Values: Shorthand Notation:A numeric value (pxorem), percentage, or "auto"
Full Notation:Four numeric values (pxorem), percentage, or "auto". The values configure
the margins in the following order (margin-top,margin-right,margin-bottom,
margin-left).
Usage: Configures the margin surrounding an element.
Example: Shorthand Notation: body { margin: 0}
(sets the page margins in the document to zero)
Full Notation:margin:0px 10% 0px 10%;
margin-bottom
Common Values: A numeric value (pxorem) or percentage
Usage: Configures the size of an element’s bottom margin.
Example: margin-bottom:20px;
margin-left
Common Values: A numeric value (pxorem) or percentage
Usage: Configures the size of an element’s left margin.
Example: margin-1eft:100px;
margin-right
Common Values: A numeric value (pxorem) or percentage
Usage: Configures the size of an element’s right margin.
Example: margin-right:20px;
margin-top
Common Values: A numeric value (pxorem) or percentage
Usage: Configures the size of an element’s top margin.
Example: margin-top:5px;
(continues)