CSS Border image属性用于向某些元素添加图像边界。边界图像的示例语法如下-
#borderimg { border: 10px solid transparent; padding: 15px; }
最常用的值如下所示-
Sr.No. | Value & Remark |
---|---|
1 |
border-image-source 用于设置图像路径 |
2 |
border-image-slice 用于切片边框图像 |
3 |
border-image-width 用于设置边框图像宽度 |
4 |
borer-image-repeat 用于将边框图像设置为圆形(rounded),重复(repeated)和拉伸(stretched) |
Border Images示例
以下是演示将图像设置为元素边框的示例。
<html> <head> <style> #borderimg1 { border: 10px solid transparent; padding: 15px; border-image-source: url(/css/images/border.png); border-image-repeat: round; border-image-slice: 30; border-image-width: 10px; } #borderimg2 { border: 10px solid transparent; padding: 15px; border-image-source: url(/css/images/border.png); border-image-repeat: round; border-image-slice: 30; border-image-width: 20px; } #borderimg3 { border: 10px solid transparent; padding: 15px; border-image-source: url(/css/images/border.png); border-image-repeat: round; border-image-slice: 30; border-image-width: 30px; } </style> </head> <body> <p id="borderimg1">This is image boarder example.</p> <p id="borderimg2">This is image boarder example.</p> <p id="borderimg3">This is image boarder example.</p> </body> </html>
它将产生以下输出-
参考链接
https://www.learnfk.com/css/css3-boarder-image.html
标签:CSS3,slice,boarder,图像,无涯,10px,border,image From: https://blog.51cto.com/u_14033984/9394231