VOOZH about

URL: https://www.geeksforgeeks.org/css/css-clip-path-property/

⇱ CSS clip-path Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CSS clip-path Property

Last Updated : 8 Jun, 2023

The clip-path property of CSS is used to clip the particular section of the image such that part of the image inside the section is shown and part of the image outside the section is not shown. and the CSS clip-path property allows you to create custom clipping paths to define the visible portion of an element. It can be used to create various shapes such as circles, polygons, or even complex paths. This property is commonly used for creating unique and non-rectangular layouts or image masks on the web.

Syntax:

clip-path: <clip-source> | <basic-shape> | <geometry-box> | none;

Property value:  All the properties are described well in the example below.

  • <basic-shapes>: It includes some shapes like circles, rectangles, ellipse, etc that clips the given image.
  • clip-path: none;: It includes no clipping. This is the default value.
  • clip-path: clip-source;: In this, the clipping part is taken from another HTML element that contains either image or an element. Element id is used to refer to the element.

Example 1: This example displays the basic use of the clip-path property to insert the specific shapes that clip the given image.

Output:

👁 Image

Example 2: This example displays the basic use of the clip-path property where the value is set to none.

Output:

👁 Image

Example 3: This example displays the basic use of the clip-path property where the property value is set to a url.

Output:

👁 Image

Browsers supported:

  • Firefox 3.5
  • Edge 79.0
  • Opera 42.0
  • Safari 9.1
  • Chrome 55.0
Comment