Skip to content

Instantly share code, notes, and snippets.

@madhums
Created November 22, 2018 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madhums/adf2b8b7ba1fb000efec06dcb97898be to your computer and use it in GitHub Desktop.
Save madhums/adf2b8b7ba1fb000efec06dcb97898be to your computer and use it in GitHub Desktop.
making a wave like structure in css (https://jsfiddle.net/7fjSc/9/)
#wave {
position: relative;
height: 70px;
width: 600px;
background: #e0efe3;
}
#wave:before {
content: "";
display: block;
position: absolute;
border-radius: 100% 50%;
width: 340px;
height: 80px;
background-color: white;
right: -5px;
top: 40px;
}
#wave:after {
content: "";
display: block;
position: absolute;
border-radius: 100% 50%;
width: 300px;
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