Angled Edges with CSS Masks and Transforms
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 Article — Permalink
Angled Edges with CSS Masks and Transforms is a post from CSS-Tricks