clip - CSS: Cascading Style Sheets 编辑

The clip CSS property defines a visible portion of an element. The clip property applies only to absolutely positioned elements — that is, elements with position:absolute or position:fixed.

/* Keyword value */
clip: auto;

/* <shape> values */
clip: rect(1px, 10em, 3rem, 2ch);

/* Global values */
clip: inherit;
clip: initial;
clip: unset;

Syntax

Note: Where possible, authors are encouraged to use the newer clip-path property instead.

Values

<<shape>()>
A rectangular <<shape>()> of the form rect(<top>, <right>, <bottom>, <left>). The <top> and <bottom> values are offsets from the inside top border edge of the box, while <right> and <left> are offsets from the inside left border edge of the box — that is, the extent of the padding box.
The <top>, <right>, <bottom>, and <left> values may be either a <length> or auto. If any side's value is auto, the element is clipped to that side's inside border edge.
auto
The element does not clip (default). This is different from rect(auto, auto, auto, auto), which clips to the element’s inside border edges.

Formal definition

Initial valueauto
Applies toabsolutely positioned elements
Inheritedno
Computed valueauto 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

Formal syntax

<shape> | auto

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

Examples

Clipping an image

CSS

.dotted-border {
  border: dotted;
  position: relative;
  width: 536px;
  height: 350px;
}

#top-left,
#middle,
#bottom-right {
  position: absolute;
  top: 0;
}

#top-left {
  left: 360px;
  clip: rect(0, 175px, 113px, 0);
}

#middle {
  left: 280px;
  clip: rect(119px, 255px, 229px, 80px);
}

#bottom-right {
  left: 200px;
  clip: rect(235px, 335px, 345px, 160px);
}

HTML

<p class="dotted-border">
  <img src="https://www.wenjiangs.com/wp-content/uploads/2020/mozilla/hut.jpg" title="Original graphic">
  <img id="top-left" src="https://www.wenjiangs.com/wp-content/uploads/2020/mozilla/hut.jpg" title="Graphic clipped to upper left">
  <img id="middle" src="https://www.wenjiangs.com/wp-content/uploads/2020/mozilla/hut.jpg" title="Graphic clipped towards middle">
  <img id="bottom-right" src="https://www.wenjiangs.com/wp-content/uploads/2020/mozilla/hut.jpg" title="Graphic clipped to bottom right">
</p>

Result

Specifications

SpecificationStatusComment
CSS Masking Module Level 1
The definition of 'clip' in that specification.
Candidate RecommendationDeprecates clip property, suggests clip-path as replacement.
CSS Level 2 (Revision 1)
The definition of 'clip' in that specification.
RecommendationInitial definition.

Browser compatibility

BCD tables only load in the browser

See also

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

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

发布评论

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

词条统计

浏览:99 次

字数:7450

最后编辑:8年前

编辑次数:0 次

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