CSS – 边框半径和实心边框内侧弯曲

前端之家收集整理的这篇文章主要介绍了CSS – 边框半径和实心边框内侧弯曲前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这种风格在边框的外侧给出了平滑边角的边框,但是角落的内部是平坦的,我可以将它们弄圆吗?
img{
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;

border:white solid 8px;
}

请注意,问题仅在于图像提交的建议仅适用于div.

解决方法

您可以使用border-radius值作为border-size值的两倍来获得内圆角.
-webkit-border-radius: 16px;
-moz-border-radius: 16px;
border-radius: 16px;

border:white solid 8px;
原文链接:https://www.f2er.com/css/214789.html

猜你在找的CSS相关文章