css – border-radius on.没有边界四舍五入

前端之家收集整理的这篇文章主要介绍了css – border-radius on.没有边界四舍五入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有css看起来像那样:
#caltable th {
    border: solid 1px #333;
    border-radius: 7px;
    background: #f00;
}

但这是我在浏览器(Chrome / FF)中得到的:

问题是如何让黑线也圆润?

解决方法

更改边框折叠:折叠到边框折叠:在< table>上分开.

您还应该添加对不是最新版本的浏览器的支持

-moz-border-radius: 7px;
-o-border-radius: 7px;
-ms-border-radius: 7px;
-webkit-border-radius: 7px;
原文链接:https://www.f2er.com/css/214086.html

猜你在找的CSS相关文章