是否可以仅使用border-radius
属性设置元素的border
?
我想要与下面相同的结果:
#myelement {
border: 1px solid #535353;
border-radius: 5px 5px 5px 5px;
}
我想要一些像下面这样的代码(但是下面的代码不起作用):
#myelement {
border: 1px solid #535353 5px 5px 5px 5px;
}
如果你知道答案,你会介意告诉你如何找到答案吗?我在谷歌找不到它:(
答案 0 :(得分:4)
答案 1 :(得分:3)
border 属性的语法是:
<br-width> || <br-style> || <color>
以及这些值的含义:
<br-width>
The width of the border of the elements. Default value medium is used if absent
<br-style>
The line style for all four sides of the elements border. Default value none is used if absent
<color>
Denote the color of the border. If not set, its default value is the value of the element's color property (the text color, not the background color)
因此无法在border-radius
值
border