css3 background image curve

Solutions on MaxInterview for css3 background image curve by the best coders in the world

showing results for - "css3 background image curve"
Roberto
09 Apr 2016
1body {
2  margin: 0;
3  background: red;
4}
5
6div#back {
7  position: relative;
8  height: 200px;
9  background-image: url(http://wearepeak.co.uk/wp-content/uploads/2016/02/testimonial.jpg);
10  width: 100%;
11  border-bottom-left-radius: 70% 60px;
12  border-bottom-right-radius: 30% 10px;
13}