Answers for "how to make round div in css"

CSS
47

css rounded corners

/* Set rounded corners with border-radius property */

.class {
  border-radius: 4px;
}

.circle {
  border-radius: 50%;
}
Posted by: Guest on February-15-2020
1

round div

.circle {
  border-radius: 50%;
  height: 100px;
  width: 100px;
}
Posted by: Guest on April-25-2021
12

how to make borders rounded in css

#rcorners {
  border-radius: 25px;
}
Posted by: Guest on April-27-2020
0

round 2 corners of div css

border-bottom-left-radius: 50%;
Posted by: Guest on September-05-2021

Browse Popular Code Answers by Language