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

From CDOT Wiki
Jump to: navigation, search
 
(See Also)
 
Line 32: Line 32:
  
 
== See Also ==
 
== See Also ==
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-left-STYLE border-left-style]
+
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-LEFT-STYLE border-left-style]
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-left-COLOR border-left-color]
+
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-LEFT-COLOR border-left-color]
 
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-TOP-WIDTH border-top-width]
 
*[http://zenit.senecac.on.ca/wiki/index.php/CSS_GUIDE_BORDER-TOP-WIDTH border-top-width]

Latest revision as of 18:48, 13 December 2006

Summary

This property is used to set the width of an element's left border.

  • Initial: medium
  • Applies to: all elements
  • Inherited: no
  • Percentages: N/A
  • Media: visual

Syntax

TARGET_ELEMENT{border-left-width: value;}

Legal Values

  • thin - thin left border
  • medium - medium left border
  • thick - thick left border
  • length - define the thickness of the left border

Mozilla Recommended Values

Usage Examples

table{border-left-width: medium;}
table{border-left-width: 0.5px;}
table{border-left-width: thin;}

Notes

Specification Conformance

CSS 2.1

Browser Compatibility

See Also