我正在尝试使用这样的边界半径制作弧线(在 chrome 中)
#elem {
border: 2px solid orange;
border-bottom: none;
width: 440px;
height: 60px;
border-top-right-radius: 220px 60px;
border-top-left-radius: 222px 60px;
}
但弧不是连续的。如果我删除了border-bottom 属性(这使得底部边框也可见),它就变成了连续的。使底部边框颜色透明也无济于事。
例如http://jsfiddle.net/kFxec/9/
无法理解这里有什么问题?
我只为 chrome 尝试这个。在 Firefox 中运行良好