编辑下面的代码:【加编码】
<html> <head> <style type="text/css"> div { border-width:15px; width:250px; padding:10px 20px; } #round { -moz-border-image:url("/static/images/border.png") 30 30 round; /* Firefox */ -webkit-border-image:url("/static/images/border.png") 30 30 round; /* Safari 和 Chrome */ -o-border-image:url("/static/images/border.png") 30 30 round; /* Opera */ border-image:url("/static/images/border.png") 30 30 round; } #stretch { -moz-border-image:url("/static/images/border.png") 30 30 stretch; /* Firefox */ -webkit-border-image:url("/static/images/border.png") 30 30 stretch; /* Safari 和 Chrome */ -o-border-image:url("/static/images/border.png") 30 30 stretch; /* Opera */ border-image:url("/static/images/border.png") 30 30 stretch; } </style> </head> <body> <p><b>注意:</b> Internet Explorer 不支持 border-image 属性。</p> <p>border-image 属性用于指定一个边框的图像。</p> <div id="round">在这里,图像平铺(重复),以填补该地区。</div> <br> <div id="stretch">在这里,图像被拉伸以填补该地区。</div> <p>下面是使用图像:</p> <img src="/static/images/border.png"> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂