JavaScript HTML DOM Style borderImageSource 属性

  • borderImageSource 属性

    borderImageSource属性设置或返回要使用的图像,而不是border-style属性给出的边框样式。
    提示:如果值为“none”,或者无法显示图像,则将使用边框样式。
    使用图像作为div元素周围的边框:
    document.getElementById("myDIV").style.borderImageSource = "url(/images/border.png)";
    尝试一下
  • 浏览器支持

    IE/Edge Chrome FireFox Safari Opera
    属性
    borderImageSource
    11.0+
    支持
    支持
    6.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
  • 相关页面