Css Wave Shape Generator Code Example
Example: wave design css #wave { position : relative ; height : 70 px ; width : 600 px ; background : #e0efe3 ; } #wave :before { content : "" ; display : block ; position : absolute ; border-radius : 100 % 50 % ; width : 340 px ; height : 80 px ; background-color : white ; right : -5 px ; top : 40 px ; } #wave :after { content : "" ; display : block ; position : absolute ; border-radius : 100 % 50 % ; width : 300 px ; height : 70 px ; background-color : #e0efe3 ; left : 0 ; top : 27 px ; } <div id= "wave" ></div>