Slant panel
Text sits inside the visible polygon.
Combine inset and polygon clips on real content cards. Keep text inside the visible region.
.card-slant { clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%); }
Text sits inside the visible polygon.
inset with round corners.
Polygon cut on the right.
Card content must stay inside the visible region.
<article class="shaped-card card-slant">
<h3>…</h3>
<p>…</p>
</article>
Polygons and inset shape content cards.
.card-slant {
clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}
.card-ticket {
clip-path: inset(0 0 0 0 round 18px);
}