css – border-radius上的border-radius [已关闭]

前端之家收集整理的这篇文章主要介绍了css – border-radius上的border-radius [已关闭]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在background-image上添加border-radius?

解决方法

是的,可以:
div {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: none;
  width: 500px;
  height: 335px;
  background: url(http://themescompany.com/wp-content/uploads/2012/02/6402.jpg);
}

Click here for demo.

原文链接:https://www.f2er.com/css/218763.html

猜你在找的CSS相关文章