JavaScript 参考手册
Style borderImageSlice 属性
规定图像边框的向内偏移
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style> div { background-color: lightgrey; border: 30px solid transparent; border-image: url("/examples/border.png"); border-image-slice: 30; border-image-width: 1 1 1 1; border-image-outset: 0; border-image-repeat: round; } </style> </head> <body> <div id="main"> <p> 这是一个使用图像作为边框的 DIV 元素。 </p> </div> <p>点击“尝试一下”按钮改变 borderImageSlice 属性的值。</p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction() { document.getElementById("main").style.borderImageSlice = "50% 10%"; } </script> <p><b>注意:</b>Internet Explorer 10、Opera 和 Safari 5 不支持 borderImageSlice 属性。</p> </body> </html>
运行结果:
点击运行 »