Answers for "background radius"

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
3

css scaling border radius

// to scale a border-radius based upon the element size it is nested in. (rounded corners)
// simply change the vw number from .1 to 10 or whatever to change the amount of curve.
#box1 {
  border-radius: 2vw;
}
Posted by: Guest on July-03-2020
13

css border radius

-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Posted by: Guest on June-26-2019

Code answers related to "background radius"

Browse Popular Code Answers by Language