Answers for "css background image border radius"

CSS
4

how to round the corners of a div outline in css

div {
  outline: auto;
  outline-style: round;
}
Posted by: Guest on September-12-2020
1

button edges rounded css

button {
  border-radius: 25px;
}
Posted by: Guest on November-05-2020
0

css3 background image curve

body {
  margin: 0;
  background: red;
}

div#back {
  position: relative;
  height: 200px;
  background-image: url(http://wearepeak.co.uk/wp-content/uploads/2016/02/testimonial.jpg);
  width: 100%;
  border-bottom-left-radius: 70% 60px;
  border-bottom-right-radius: 30% 10px;
}
Posted by: Guest on October-07-2020

Browse Popular Code Answers by Language