<header>
<h1>Header</h1>
</header>
<article>
<section>
<h2>Content</h2>
</section>
</article>
header {
position: relative;
height: 150px;
background: #80deea;
}
header::after {
position: absolute;
content: '';
bottom: -100px;
display: block;
width: 100%;
height: 100px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon fill='%2380deea' points='100,50 50,0 0,50 0,0 100,0 '/%3E%3C/svg%3E");
/* ↑[fill='%2380deea']部分がカラー指定[80deea]部分を変更 */
/* svgファイルを外部読み込みする場合は下記を[ファイル名.svg]として保存してurl(ファイル名.svg)で指定 */
/* <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
<polygon fill="#80deea" points="100,50 50,0 0,50 0,0 100,0 "/>
</svg> */
}
section {
height: 150px;
background: url(image.jpg) no-repeat top center;
background-size:cover;
}
h1,h2 {
font-size: 2em;
margin: 0;
padding: 1em 0;
text-align: center;
color: #ffffff;
}