当前位置: 首页 > 文档资料 > CSS 入门教程 >

clip

优质
小牛编辑
126浏览
2023-12-01

描述 (Description)

clip属性定义了绝对定位元素的内容不可见的区域。

可能的值 (Possible Values)

  • auto - 剪切区域等效于定位元素的内容区域。

  • shape - 形状描述符。 从CSS2开始,只有一个有效形状:rect(右上角左下)。

适用于 (Applies to)

块级和替换元素。

DOM语法 (DOM Syntax)

object.style.clip = rect(top right bottom left);

例子 (Example)

以下是显示此属性效果的示例 -

<html>
   <head>
      <style type = "text/css">
         div {
            background: url(/images/css.gif);
            clip:rect(10px, 155px, 145px, 10px);
            border:2px solid black;
            height:100px;
            width:150px;
            position:absolute;
            top:inherit;
            left:0px;
         }
      </style>
   </head>
   <body>
      <div>Example of clipping one image using css clip property</div>
   </body>
</html>