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

From CDOT Wiki
Jump to: navigation, search
(Syntax)
(Legal Values)
Line 5: Line 5:
  
 
== Legal Values ==
 
== Legal Values ==
 +
*none Defines no border
 +
*hidden  - same as "none", except in border conflict resolution for table elements
 +
*dotted - dotted border.
 +
*dashed - dashed border.
 +
*solid -  solid border
 +
*double - Specifies two borders. The width of the two borders are the same as the border-width value
 +
*groove - 3D grooved border. The effect depends on the border-color value
 +
*ridge -  3D ridged border. The effect depends on the border-color value
 +
*inset -  3D inset border. The effect depends on the border-color value
 +
*outset - 3D outset border. The effect depends on the border-color value
  
 
== Mozilla Recommended Values ==
 
== Mozilla Recommended Values ==

Revision as of 18:00, 13 December 2006

Summary

This property allows you to set the style of an element's bottom border.

Syntax

TARGET_ELEMENT{border-bottom-style: value;}

Legal Values

  • none Defines no border
  • hidden - same as "none", except in border conflict resolution for table elements
  • dotted - dotted border.
  • dashed - dashed border.
  • solid - solid border
  • double - Specifies two borders. The width of the two borders are the same as the border-width value
  • groove - 3D grooved border. The effect depends on the border-color value
  • ridge - 3D ridged border. The effect depends on the border-color value
  • inset - 3D inset border. The effect depends on the border-color value
  • outset - 3D outset border. The effect depends on the border-color value

Mozilla Recommended Values

Usage Examples

Notes

Specification Conformance

Browser Compatibility

See Also