Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

CSS Properties

CSS clip Property

Posted in CSS Tutorial
Updated on Oct 02, 2024
By Mari Selvan
👁️ 14 - Views
⏳ 4 mins
💬 1 Comment
CSS clip Property

Photo Credit to CodeToFun

🙋 Introduction

The clip property in CSS is used to define a visible portion of an element. It works with positioned elements, allowing you to specify a rectangular area through which the content is displayed, hiding the rest. Although largely replaced by the clip-path property, clip is still useful for certain tasks and is supported by modern browsers.

💡 Syntax

The clip property uses the rect() function to define the clipping rectangle. The syntax is as follows:

Syntax
Copied
Copy To Clipboard
element {
  clip: rect(top, right, bottom, left);
}

🎛️ Default Value

The default value of the clip property is auto, which means no clipping is applied and the entire element is visible.

🏠 Property Values

ValueDescription
topThe top edge of the rectangle.
rightThe right edge of the rectangle.
bottomThe bottom edge of the rectangle.
leftThe left edge of the rectangle.
autoNo clipping is applied, and the element is fully visible.

📄 Example

In this example, we'll clip an image to show only a portion of it.

index.html
Copied
Copy To Clipboard
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CSS clip Example</title>
  <style>
    .clipped {
      position: absolute;
      clip: rect(50px, 200px, 150px, 50px);
    }
  </style>
</head>
<body>
  <h1>Image Clipped with CSS clip Property</h1>
  <div style="position: relative;">
    <img src="your-image.jpg" alt="Example Image" class="clipped">
  </div>
</body>
</html>

🖥️ Browser Compatibility

The clip property is supported in most modern browsers, including the latest versions of Chrome, Firefox, Safari, Edge, and Opera. However, for more complex clipping paths, consider using the clip-path property which offers greater flexibility and control.

🎉 Conclusion

The clip property is a handy tool for defining the visible area of an element, particularly in situations where a simple rectangular clipping region is sufficient. While its use cases are more limited compared to the more versatile clip-path property, it can still be useful in certain scenarios. Experiment with different clipping regions to see how this property can be applied to your web projects.

👨‍💻 Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy