Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
Warning: Where possible, authors are encouraged to use the newer clip-path property instead.
The clipCSS 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.
Syntax
css
/* Keyword value */clip: auto;/* <shape> values */clip:rect(1px, 10em, 3rem, 2ch);/* Global values */clip: inherit;clip: initial;clip: revert;clip: revert-layer;clip: unset;
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.
<pclass="dotted-border"><imgsrc="macarons.png"alt="Original graphic"/><imgid="top-left"src="macarons.png"alt="Graphic clipped to upper left"/><imgid="middle"src="macarons.png"alt="Graphic clipped towards middle"/><imgid="bottom-right"src="macarons.png"alt="Graphic clipped to bottom right"/></p>