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

From CDOT Wiki
Jump to: navigation, search
(Syntax)
m (See Also)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Summary ==
 
== Summary ==
 
This property is used to set the width of an element's bottom border.
 
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 ==
 
== Syntax ==
 
<pre>TARGET_ELEMENT{border-bottom-width: value;}</pre>
 
<pre>TARGET_ELEMENT{border-bottom-width: value;}</pre>
Line 12: Line 18:
  
 
== Usage Examples ==
 
== Usage Examples ==
 +
<pre>table{border-bottom-width: medium;}</pre>
  
== Notes ==
+
<pre>table{border-bottom-width: 0.5px;}</pre>
  
== Specification Conformance  ==
+
<pre>table{border-bottom-width: thin;}</pre>
 
 
== Browser Compatibility ==
 
 
 
== See Also ==
 
 
 
== 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 ==
 
  
 
== Notes ==
 
== Notes ==
  
 
== 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 ==
 +
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-BOTTOM-STYLE border-bottom-style]
 +
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-BOTTOM-COLOR border-bottom-color]
 +
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-TOP-WIDTH border-top-width]

Latest revision as of 18:26, 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: medium;}
table{border-bottom-width: 0.5px;}
table{border-bottom-width: thin;}

Notes

Specification Conformance

CSS 2.1

Browser Compatibility

See Also