Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to create wave like border

#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;
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to change link color hover button text 
Css :: button click css style 
Css :: backgroud color css 
Css :: list in html css 
Css :: image orientation css 
Css :: smooth button effect css 
Css :: bootstrap mb 
Css :: remove auto focus selected background color 
Css :: how to specify number of characters in css 
Css :: nuxt page transition 
Css :: how to add pictures in circle html 
Css :: how to make bold text css 
Css :: how to ignore an element from the flexbox container 
Css :: angular css path to assets 
Css :: background color in hex css 
Css :: how to fix overflow elementor 
Css :: webpack animate.css 
Css :: width in % of a screen css 
Css :: space between items in css 
Css :: css when i add a border radius to input problem 
Css :: css after on hover 
Css :: box sizing border box 
Css :: tampermonkey custom css 
Css :: scss examples 
Css :: css make all text center 
Css :: css grid example 
Css :: material design css 
Css :: css wavy line 
Css :: cannot apply border radius to tr 
Css :: ms-clear event 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =