Difference between revisions of "CSS GUIDE BORDER-BOTTOM-WIDTH"
(→Usage Examples) |
(→Specification Conformance) |
||
Line 27: | Line 27: | ||
== Specification Conformance == | == Specification Conformance == | ||
+ | [http://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width CSS 2.1] | ||
== Browser Compatibility == | == Browser Compatibility == | ||
== See Also == | == See Also == |
Revision as of 17:24, 13 December 2006
Contents
Summary
This property is used to set the width of an element's bottom border.
- Initial: medium
- Applies to: all elements
- Inherited: no
- Percentages: N/A
- Media: visual
Syntax
TARGET_ELEMENT{border-bottom-width: value;}
Legal Values
- thin - thin bottom border
- medium - medium bottom border
- thick - thick bottom border
- length - define the thickness of the bottom border
Mozilla Recommended Values
Usage Examples
table{border-bottom-width: medium;}
table{border-bottom-width: 0.5px;}
table{border-bottom-width: thin;}