CARVIEW |
Select Language
HTTP/2 200
date: Tue, 14 Oct 2025 06:31:24 GMT
content-type: text/html; charset=utf-8
server: cloudflare
cache-provider: CLOUDWAYS-CACHE-DE
x-frame-options: SAMEORIGIN
referrer-policy: strict-origin-when-cross-origin
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-xss-protection: 1; mode=block
vary: Accept-Encoding
last-modified: Mon, 13 Oct 2025 13:00:07 GMT
cache-control: max-age=0, s-maxage=2592000
expires: Tue, 14 Oct 2025 03:35:37 GMT
age: 10547
x-cache: HIT
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: __cf_bm=ZK18hN7uyUh15esRFhFph6Uir4q0IDwSKGqhzTpHyNM-1760423483.4734533-1.0.1.1-cGZapZnEFeb2ORS8GFHikdcZIYep.Y53yiJ.KN1bZ_iMHYhcElLv8QjBWNCBDvRS4tXJB6qIoC0nR0DBI8PxTw5tL4Hs6cvEyMyLk7dyBCz0ymEFk1KAqu.QP5_EnfsD; HttpOnly; Secure; Expires=Tue, 14 Oct 2025 07:01:24 GMT
cf-ray: 98e50893be52741b-BLR
P | CSS-Tricks
Skip to main content
path()
path()
The CSS path()
function enables us to create complex paths, polygons and other shapes using SVG path command syntax.
.element { clip-path: path("…"); }
Continue Reading
polygon()
polygon()
The CSS polygon()
function allows you to create any type of polygon to use in the shape-outside
, clip-path
, and offset-path
properties.
.element { clip-path: polygon(50% 0%, 75% 6.7%, 93.3% 25%, 100% 50%, 93.3% 75%, 75% 93.3%, 50% 100%, 25% 93.3%, 6.7% 75%, 0% 50%, 6.7% 25%, 25% 6.7%); }
Continue Reading