clip
Quick Summary for clip
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.
Code Usage for clip

<pre class="brush: css notranslate"><code><span class="token comment">/ Keyword value /</span> <span class="token property">clip</span><span class="token punctuation">:</span> auto<span class="token punctuation">;</span> <span class="token comment">/ &lt;shape&gt; values /</span> <span class="token property">clip</span><span class="token punctuation">:</span> <span class="token function">rect</span><span class="token punctuation">(</span>1px<span class="token punctuation">,</span> 10em<span class="token punctuation">,</span> 3rem<span class="token punctuation">,</span> 2ch<span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token comment">/ Global values /</span> <span class="token property">clip</span><span class="token punctuation">:</span> inherit<span class="token punctuation">;</span> <span class="token property">clip</span><span class="token punctuation">:</span> initial<span class="token punctuation">;</span> <span class="token property">clip</span><span class="token punctuation">:</span> revert<span class="token punctuation">;</span> <span class="token property">clip</span><span class="token punctuation">:</span> unset<span class="token punctuation">;</span> </code></pre>

More Details for clip

clip

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: revert; 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://developer.mozilla.org/@api/deki/files/3613/=hut.jpg" title="Original graphic">   <img id="top-left" src="https://developer.mozilla.org/@api/deki/files/3613/=hut.jpg" title="Graphic clipped to upper left">   <img id="middle" src="https://developer.mozilla.org/@api/deki/files/3613/=hut.jpg" title="Graphic clipped towards middle">   <img id="bottom-right" src="https://developer.mozilla.org/@api/deki/files/3613/=hut.jpg" title="Graphic clipped to bottom right"> </p> 
Result

Specifications

Specification
CSS Masking Module Level 1 # clip-property

See also

This property is deprecated. Use clip-path instead. Related CSS properties: text-overflow, white-space, overflow-x, overflow-y, overflow, display, position

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)DeutschEspañolFrançais日本語Polski中文 (简体)正體中文 (繁體) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote

Really microsoft?


Latest News
## 🚀 AI Giants Hit Bullseye: Anthropic & OpenAI Achieve Product-Market Fit Anthropic and OpenAI have reached a significant milestone, finding product-market fit with their AI technologies, which means their products effectively meet the needs of their customers, driving growth and adoption. This achievement showcases the practical value of their innovations, enabling businesses and individuals to leverage AI for enhanced productivity and efficiency. With this alignment of product and market needs, these companies are poised to transform industries and shape the future of technology.