Style borderImageSource 属性
示例
使用图像作为 div 元素周围的边框
document.getElementById("myDIV").style.borderImageSource = "url(border.png)";
自己尝试 »
描述
borderImageSource 属性设置或返回要使用的图像,而不是 border-style 属性给出的边框样式。
提示:如果值为 "none",或图像无法显示,将使用边框样式。
浏览器支持
表中的数字指定完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
borderImageSource | 是 | 11.0 | 是 | 6.0 | 15.0 |
查看 borderImage 属性!
语法
返回 borderImageSource 属性
object.style.borderImageSource
设置 borderImageSource 属性
object.style.borderImageSource = "none|image|initial|inherit"
属性值
值 | 描述 |
---|---|
none | 不使用任何图像 |
image | 要作为边框使用的图像的路径 |
initial | 将此属性设置为其默认值。 阅读关于 initial |
inherit | 从其父元素继承此属性。 阅读关于 inherit |
技术细节
默认值 | none |
---|---|
返回值 | 字符串,表示元素的 border-image-source 属性 |
CSS 版本 | CSS3 |
相关页面
CSS 参考:border-image-source 属性