Answers for "css round edges of border"

CSS
5

How to make a round corner in CSS

#roundCornerID {
    border-radius: 30%;
    width: 200px;
    height: 150px;   
}
Posted by: Guest on August-01-2020
0

how to round the edges of a box html

.box {
  border-radius: 25px;
}
Posted by: Guest on March-04-2022

Browse Popular Code Answers by Language