Is it possible to add border-radius
on background-image
?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.
回答2:
Try this
div {
border: 10px solid white;
-moz-border-radius: 10px;
background:url(map_background_box_right.png);
}