Border-radius on background-image [closed]

2019-04-03 03:54发布

Is it possible to add border-radius on background-image ?

2条回答
Luminary・发光体
2楼-- · 2019-04-03 04:40

Yes it is possible:

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.

查看更多
姐就是有狂的资本
3楼-- · 2019-04-03 04:50

Try this

    div {
        border: 10px solid white;
       -moz-border-radius: 10px;
       background:url(map_background_box_right.png);
        }
查看更多
登录 后发表回答