Skip to content

Instantly share code, notes, and snippets.

@abhianair
Created May 7, 2021 08:16
Show Gist options
  • Save abhianair/c1024c951fe903a4513d3d72a1f2fc28 to your computer and use it in GitHub Desktop.
Save abhianair/c1024c951fe903a4513d3d72a1f2fc28 to your computer and use it in GitHub Desktop.
Wave CSS
<div id="wave"></div>
#wave {
position: relative;
height: 70px;
width: 100%;
background: #e0efe3;
}
#wave:before {
content: "";
display: block;
position: absolute;
border-radius: 100% 50%;
width: 47%;
height: 80px;
background-color: white;
right: -5px;
top: 40px;
}
#wave:after {
content: "";
display: block;
position: absolute;
border-radius: 100% 50%;
width: 60%;
height: 70px;
background-color: #e0efe3;
left: 0;
top: 27px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment