Answers for "css border radius pixelated"

CSS
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
0

border radius 4 values

/* top-left | top-right | bottom-right | bottom-left */
border-radius: 1px 0 3px 4px;
Posted by: Guest on July-09-2021

Browse Popular Code Answers by Language