blog

  • Home
  • blog
  • Angled Edges with CSS Masks and Transforms

Angled Edges with CSS Masks and Transforms

Category: Link

Jeremy Frank with a very simple and clever way to have elements not end perfectly horizontally, but at an angle:

.section {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

Just make sure there is enough bottom padding so nothing important gets cut off.

Direct Link to ArticlePermalink


Angled Edges with CSS Masks and Transforms is a post from CSS-Tricks

LEAVE A REPLY