(^618) Appendix C CSS Property Reference
Table C.1Cascading style sheet properties (continued)
Property
scrollbar-track-color
Common Values: Valid hexadecimal color value, RGB color value, or color name
Usage: Configures the color of the track the scroll bar slides (Internet Explorer only).
Example: scrollbar-face-color:#000000;
text-align
Common Values: "center", "justify", "left", "right"
Usage: Configures the alignment of text in an element. This applies to block-level elements.
Example: text-align:center;
text-indent
Common Values: A numeric value (emor px) or percentage
Usage: Configures the indent of the first line of a block element.
Example: text-indent:10px;
text-decoration
Common Values: "none", "underline", "overline", "line-through", "blink"
Usage: Determines whether text in an element is underlined. This style is most often applied to
hyperlinks to remove the underline.
Example: text-decoration:none;
text-transform
Common Values: "none", "capitalize", "uppercase", "lowercase"
Usage: Modifies the appearance of text in an element.
Example: text-transform:uppercase;
top
Common Values: A numeric value (emor px) or percentage
Usage: Configures the distance down from the top of the containing element to display an element.
Example: top:100px;
vertical-align
Common Values: A numeric value (emor px), percentage, values ("baseline", "sub", "super", "top",
"text-top”, "middle", "bottom", "text-bottom")
Usage: Configures the vertical alignment of an inline element.
Example: vertical-align:top;
visibility
Common Values: "visible", "hidden", "inherit"
Usage: Configures whether an element displays and takes up space on a Web page.
Example: visibility:hidden;
steven felgate
(Steven Felgate)
#1