border-top-color
border-top-color
属性用以设置某元素顶部
border
的颜色。通常,用
border-color
或
border-top
设置该颜色更为便捷可取。
示例
/* <color> values */ border-top-color: red; border-top-color: #ffbb00; border-top-color: rgb(255, 0, 0); border-top-color: hsla(100%, 50%, 25%, 0.75); border-top-color: currentcolor; border-top-color: transparent; /* global values */ border-top-color: inherit; border-top-color: initial; border-top-color: unset;
浏览器支持
![]() |
![]() |
![]() |
![]() |
![]() |
浏览器都支持
border-top-color
|
语法
border-top-color : <color>
取值:
<color>
:取值
rgb()
|
rgba()
|
hsl()
|
hsla()
|
Color Name
|
currentColor
|
deprecated-system-color
例子
<div class="mybox"> <p>this is a box with a border around it. note which side of the box is <span class="redtext">red</span>.</p> </div> //CSS .mybox { border: solid 0.3em gold; border-top-color: red; width: auto; } .redtext { color: red; }