clip - CSS(层叠样式表) 编辑

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

概述

clip 属性定义了元素的哪一部分是可见的。clip 属性只适用于 position:absolute 的元素。

警告:这个属性已被废弃。建议使用 clip-path

初始值auto
适用元素absolutely positioned elements
是否是继承属性
适用媒体visual
计算值auto if specified as auto, otherwise a rectangle with four values, each of which is auto if specified as auto or the computed length otherwise
Animation typea rectangle
正规顺序the unique non-ambiguous order defined by the formal grammar

语法

形式语法: <shape> | auto

where
<shape> = rect(<top>, <right>, <bottom>, <left>)

clip: rect(1px, 10em, 3rem, 2ch)
clip: auto

clip: inherit

<shape>
一个矩形 <shape>
rect(<top>, <right>, <bottom>, <left>)   /* 标准语法 */
rect(<top> <right> <bottom> <left>)      /* 向后兼容语法 */
<top><bottom> 指定相对于盒子上边框边界 的偏移,<right><left> 指定了相对于盒子左边框边界 的偏移。
<top><right><bottom>, 和 <left> 的值可以是 <length> 值或 auto
auto
元素不裁剪(默认值)

示例

p { border:dotted;  position:relative; }

#img2 {
  position:absolute;  left:263px;

  clip: rect(40px, 200px, 150px, 30px);
  /* 标准语法,Internet Explorer 4-7 不支持 */
}

#img3 {
  position: absolute; left:526px;

  clip: rect(40px  200px  150px  30px);
  /* 非标准语法,但是包括火狐与 IE 在内的主要浏览器均支持 */
}

hut.jpg hut.jpg hut.jpg

规范

SpecificationStatusComment
CSS Transitions
clip
Working DraftDefines clip as animatable.
CSS Level 2 (Revision 1)
clip
Recommendation 

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support1.01.0 (1.0)4.07.01.0 (85)
8.0
该版本支持逗号语法。
FeatureAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basic support?????

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:70 次

字数:7977

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文