Style borderImageSlice 属性

Style 对象参考手册 Style 对象

规定图像边框的向内偏移:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <style>
    div {
      background-color: lightgrey;
      border: 30px solid transparent;
      border-image: url("/examples/border.png");
      border-image-slice: 30;
      border-image-width: 1 1 1 1;
      border-image-outset: 0;
      border-image-repeat: round;
    }
  </style>
</head>
<body>

  <div id="main">
    <p>
      这是一个使用图像作为边框的 DIV 元素。
    </p>
  </div>
  <p>点击“尝试一下”按钮改变 borderImageSlice 属性的值。</p>
  <button onclick="myFunction()">尝试一下</button>
  <script>
    function myFunction() {
      document.getElementById("main").style.borderImageSlice = "50% 10%";
    }
  </script>
  <p><b>注意:</b>Internet Explorer 10、Opera 和 Safari 5 不支持 borderImageSlice 属性。</p>

</body>
</html>

尝试一下 »


定义和用法

borderImageSlice 属性规定图像边框的向内偏移。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Opera 不支持 borderImageSlice 属性。

Internet Explorer 10 及其之前的版本不支持 borderImageSlice 属性。

Safari 5 及其之前的版本不支持 borderImageSlice 属性。

请参阅 borderImage 属性来替代它!


语法

返回 borderImageSlice 属性:

object.style.borderImageSlice

设置 borderImageSlice 属性:

object.style.borderImageSlice = "number|%|fill|initial|inherit"

属性值

描述
number 表示图像像素(如果图像是光栅图像)或矢量坐标(如果图像是矢量图像)的数字。
% 表示相对于图像大小的百分比:水平偏移参照图像的宽度,垂直偏移参照图像的高度。默认值是 100%。
fill 使边框图像中间部分被保留下来。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: 100%
返回值: 字符串,表示元素的 border-image-slice 属性。
CSS 版本 CSS3

相关文章

CSS 参考手册:border-image-slice 属性


Style 对象参考手册 Style 对象