在背景图象的边界半径

时间:2013-01-16 08:05:45

标签: css background-image css3

是否可以在border-radius上添加background-image

2 个答案:

答案 0 :(得分:16)

是的,有可能:

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.

答案 1 :(得分:2)

试试这个

    div {
        border: 10px solid white;
       -moz-border-radius: 10px;
       background:url(map_background_box_right.png);
        }