Style borderImageSource 属性 详解
css3基础 2023-07-30 01:28:54小码哥的IT人生shichen
Style borderImageSource 属性
定义和用法
borderImageSource
属性设置或返回要使用的图像,而不是由 border-style 属性给出的边框样式。
提示:如果值为 "none"
,或者图像无法显示,将使用边框样式。
另请参阅:
CSS 参考手册:border-image-source 属性
实例
使用图像作为 div 元素的边框:
document.getElementById("myDIV").style.borderImageSource = "url(border.png)";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
div {
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>下面是所用的两幅图像:</p>
<img src="/i/css/border.png">
<img src="/i/pic/flower.gif">
<p>点击“试一试”按钮可更改 borderImageSource 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("main").style.borderImageSource = "url('/i/pic/flower.gif')";
}
</script>
<p><b>注释:</b>Internet Explorer 10 及更早版本不支持此属性。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 borderImageSource 属性:
object.style.borderImageSource
设置 borderImageSource 属性:
object.style.borderImageSource = "none|image|initial|inherit"
属性值
值 | 描述 |
---|---|
none | 不会使用任何图像。 |
image | 要用作边框的图像的路径。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | none |
---|---|
返回值: | 字符串,表示元素的 border-image-source 属性。 |
CSS 版本: | CSS3 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 11.0 | 支持 | 6.0 | 15.0 |
请查看 borderImage 属性!