Multiple clip-paths
I'm trying to make a website layout ideally consisting of multiple divs, where I'd like each one to have a slanted bottom, going into the one below. Here's a look at the mockup so far: @charset "utf-8"; /* CSS Document */ * { margin: 0; font-size: 10px; } .red { position: relative; height: 500px; background: red; background-size: cover; background-repeat: no-repeat; background-position: center; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5vw)); } .blue { height: 500px; margin-top: -5vw; background: blue; } .green { height: 500px; margin-top: -5vw; background: green; } .orange {