绘制四个角不同半径的圆角边框
可以在border-image属性中指定元素四条边中的图像是以拉伸的方式显示,还是以平铺的方式显示,指定方法如下所示。
border-image: url(文件路径) A B C D/border-width topbottom leftright
其中,topbottom表示元素的上下两条边中图像的显示方法,leftright表示元素的左右两条边中的显示方法。在显示方法中可以指定的值为repeat、stretch、round三种。
repeat
将显示方法指定为repeat时,图像将以平铺的方式进行显示。示例代码:
.wrap {
border-image:url(img/border.png) 18/5px repeat repeat;
-webkit-border-image:url(img/border.png) 18/5px repeat repeat;
-moz-border-image:url(img/border.png) 18/5px repeat repeat;
}
stretch
将显示方法指定为stretch时,图像将以拉伸的方式进行显示。
repeat+stretch
将显示方法指定为repeat+stretch时,图像将以平铺方式和拉伸方式结合使用。示例如下:
.wrap {
border-image:url(img/border.png) 18/5px repeat stretch;
-webkit-border-image:url(img/border.png) 18/5px repeat stretch;
-moz-border-image:url(img/border.png) 18/5px repeat stretch;
}
round
将显示方法指定为round时与将显示指定为repeat类似。