Visit Mozilla.org

CSS:border

From MDC

« CSS 参考

[编辑] Summary

The border property is a shorthand property for setting the individual border property values in a single place in the style sheet. border can be used to set the values for one or more of: border-width, border-style, border-color.

[编辑] Syntax

border: [border-width || border-style || border-color | inherit] ;

[编辑] Values

border-width
See border-width.
border-style 
See border-style.
border-color 
See border-color.

[编辑] Examples

View Live Examples

element { 
    border: 1px solid #000;
}

[编辑] Notes

While the border-width, border-style, and border-color properties accept up to four values, this property only accepts one value for each property.

[编辑] Specifications

[编辑] Browser compatibility

Browser Lowest Version
Internet Explorer 4
Firefox 1
Netscape 4
Opera 3.5

[编辑] See also

Template:CSS Reference:Border