Answers for "css radius background color"

CSS
48

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
11

how to make borders rounded in css

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

css radius background color

.class {
  border-radius: 4px;
}
Posted by: Guest on September-14-2021

Code answers related to "css radius background color"

Browse Popular Code Answers by Language