Style borderImage 属性
实例
把图像指定为 <div> 元素的边框:
document.getElementById("myDIV").style.borderImage = "url(border.png) 30 30 round";
语法
返回 borderImage 属性:
object.style.borderImage
设置 borderImage 属性:
object.style.borderImage = "source slice width outset repeat|initial|inherit"
属性值
值 | 描述 |
---|---|
borderImageSource | 要用作边框的图像的路径。 |
borderImageSlice | 图像边框的向内偏移。 |
borderImageWidth | 图像边框的宽度。 |
borderImageOutset | 边框图像区域超出边框盒(border box)的量。 |
borderImageRepeat | 图像边框应平铺 (repeated)、铺满 (rounded) 还是拉伸 (stretched)。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | none 100% 1 0 stretch |
---|---|
返回值: | 字符串,表示元素的 border-image 属性。 |
CSS 版本: | CSS3 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
16.0 | 11.0 | 15.0 | 6.0 | 15.0 |