Difference between revisions of "CSS GUIDE BORDER-BOTTOM-WIDTH"

From CDOT Wiki
Jump to: navigation, search
(Usage Examples)
Line 18: Line 18:
  
 
== Usage Examples ==
 
== Usage Examples ==
 +
<pre>table{border-bottom-width: thin;}</pre>
 +
 +
<pre>table{border-bottom-width: 0.5px;}</pre>
  
 
== Notes ==
 
== Notes ==

Revision as of 18:23, 13 December 2006

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: thin;}
table{border-bottom-width: 0.5px;}

Notes

Specification Conformance

Browser Compatibility

See Also