Style borderImageOutset 属性 详解
css3基础 2023-07-30 01:39:26小码哥的IT人生shichen
Style borderImageOutset 属性
实例
将边框放在 <div> 元素的边缘之外:
document.getElementById("myDIV").style.borderImageOutset = "5px 10px 20px 15px";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
#main {
background-color: lightgrey;
border: 30px solid transparent;
border-image: url('/i/css/border.png') 30 30 round;
}
</style>
</head>
<body>
<div id="main">
<p>这是一个使用图像作为边框的 DIV 元素。</p>
</div>
<p>点击“试一试”按钮可更改 borderImageOutset 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("main").style.borderImageOutset = "5px 10px 20px 15px";
}
</script>
<p><b>注释:</b>Internet Explorer 10 及更早版本不支持此属性。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 borderImageOutset 属性:
object.style.borderImageOutset
设置 borderImageOutset 属性:
object.style.borderImageOutset = "length|number|initial|inherit"
注释:borderImageOutset
属性规定边框图像超出边框盒的量。在上、右、下、左侧。如果忽略第四个值,则与第二个值相同。如果省略第三个值,则与第一个值相同。如果省略第二个值,则与第一个值相同。不允许任何负值作为 border-image-outset 值。
属性值
值 | 描述 |
---|---|
length | 长度单位,规定边框图像将出现在多远处。默认值 0。 |
number | 表示对应的 border-width 的倍数。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | 0 |
---|---|
返回值: | 字符串,表示元素的 border-image-outset 属性。 |
CSS 版本: | CSS3 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 11.0 | 支持 | 6.0 | 15.0 |
请查看 borderImage 属性!