CSS 参考手册
CSS3 border-image-repeat 属性
设置重复图像的方式
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> div { background-color: lightgrey; border: 30px solid transparent; border-image: url("/examples/border.png"); border-image-slice: 30; border-image-repeat: repeat; } </style> </head> <body> <div> DIV 使用图像边框。 </div> <p>使用的图片:</p> <img src="/examples/border.png"> <p><b>注意: </b>Internet Explorer 10, Opera 12, 和 Safari 5 不支持 border-image-repeat 属性。</p> </body> </html>
运行结果:
点击运行 »