border-top - CSS(层叠样式表) 编辑
CSS属性 border-top是属性 border-top-color
, border-top-style
, 和border-top-width
的三者的缩写。这些属性都是在描述一个元素的上方的边框border
。
与所有缩写属性(shorthand properties)一样,border-top始终设置它可以设置的所有属性的值,即使未指定它们也是如此。 它将未指定的那些设置为其默认值。 这意味着 ..
border-top-style: dotted; border-top: thick green;
和下面的代码效果相同:
border-top-style: dotted; border-top: none thick green;
在border-top
前指定的border-top-style
将会失效。因为border-top-style
默认值为none
,故没有边界即没有指定border-style
Syntax
border-top: 1px; border-top: 2px dotted; border-top: medium dashed green;
这三种属性值的缩写需要按照顺序定义数值,也可以省略其中的一个或者两个。
Values
<br-width>
- 请参阅
border-top-width
. <br-style>
- 请参阅
border-top-style
. <color>
- 请参阅
border-top-color
.
Formal syntax
<line-width> || <line-style> || <color>where
<line-width> = <length> | thin | medium | thick
<line-style> = none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset
<color> = <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>where
<rgb()> = rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )
<rgba()> = rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )
<hsl()> = hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )
<hsla()> = hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )where
<alpha-value> = <number> | <percentage>
<hue> = <number> | <angle>
示例
<div>
This box has a border on the top side.
</div>
div {
border-top: 4px dashed blue;
background-color: gold;
height: 100px;
width: 100px;
font-weight: bold;
text-align: center;
}
技术说明
Specification | Status | Comment |
---|---|---|
CSS Backgrounds and Borders Module Level 3 border-top | Candidate Recommendation | 通过修改border-top-color 的值,没有直接的更改。 |
CSS Level 2 (Revision 1) border-top | Recommendation | 没有明显改变 |
CSS Level 1 border-top | Recommendation | 初次定义 |
Browser compatibility
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论