如何使用border属性设置border-radius

时间:2014-04-24 04:10:41

标签: html css

是否可以仅使用border-radius属性设置元素的border

我想要与下面相同的结果:

#myelement {
  border: 1px solid #535353;
  border-radius: 5px 5px 5px 5px;
}

我想要一些像下面这样的代码(但是下面的代码不起作用):

#myelement {
  border: 1px solid #535353 5px 5px 5px 5px;
}

如果你知道答案,你会介意告诉你如何找到答案吗?我在谷歌找不到它:(

2 个答案:

答案 0 :(得分:4)

简而言之,不可能。

Formal syntax: <br-width> || <br-style> || <color>

您应该阅读border属性的Mozilla's Documentation

答案 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