Style borderImageWidth 属性 详解
css3基础 2023-07-30 01:38:05小码哥的IT人生shichen
Style borderImageWidth 属性
实例
规定图像边框的宽度:
document.getElementById("myDIV").style.borderImageWidth = "20px 30px";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: lightgrey;
border: 30px solid transparent;
border-image: url('/i/css/border.png');
border-image-slice: 30;
border-image-width: 10px;
border-image-outset: 0;
border-image-repeat: round;
}
</style>
</head>
<body>
<div id="main">
<p>这是一个使用图像作为边框的 DIV 元素。</p>
</div>
<p>点击“试一试”按钮可更改 borderImageWidth 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("main").style.borderImageWidth = "20px 30px";
}
</script>
<p><b>注释:</b>Internet Explorer 10 及更早版本不支持此属性。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 borderImageWidth 属性:
object.style.borderImageWidth
设置 borderImageWidth 属性:
object.style.borderImageWidth = "number|%|auto|initial|inherit"
属性值
???值 | 描述 |
---|---|
length | 规定边框宽度大小,以像素计。 |
number | 默认值 1。表示对应的 border-width 的倍数。 |
% | 参考边框图像区域的尺寸:区域的高度影响水平偏移,宽度影响垂直偏移。 |
auto | 如果规定,则宽度是相应图像切片的固有宽度或高度。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | 1 |
---|---|
返回值: | 字符串,表示元素的 border-image-width 属性。 |
CSS 版本: | CSS3 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 11.0 | 支持 | 6.0 | 15.0 |
请查看 borderImage 属性!