您的位置:首页 > Web前端 > CSS

CSS3 border-image属性

2016-01-17 11:42 453 查看
border-image-source:用在边框的图片路径上

border-image-slice:图片边框向内偏移

border-image-width:图片边框的宽度

border-image-outset:边框图像区域超出边框的量

border-image-repeat:图像边框是否应平铺(repeated)、铺满(rounded)或拉伸(stretched)。

实例:

div{

width:300px;

height:300px;

background:url(./shuaing.jpg) center no repeat;

border-image-source:url(./border.png)边框图片属性

border-image-width:27px;边框图片宽度属性

border-image-slice:27;边框图片切割属性

border-image-outset:0px;图片边框扩展属性

border-image-repeat:stretch;边框图片重复属性

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: