Horje
how to create wave like border Code Example
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;
}




Css

Related
css a little transparent Code Example css a little transparent Code Example
css display original image in smalle width Code Example css display original image in smalle width Code Example
secondline ellipsis Code Example secondline ellipsis Code Example
tar xz Code Example tar xz Code Example
css margin Code Example css margin Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13