Answers for "css clipped border radius"

CSS
0

outline radius css

/* use box-shadow instead of outline radius */
box-sizing: border-box;
border-radius: 100%;
border: 3px solid #dadada;
box-shadow: 0 0 0 2px #fff inset;
Posted by: Guest on July-20-2021
0

css inverted border radius

.class-to-apply-to:before {
   box-shadow: 0 20px 0 0 #522d5b;
}
Posted by: Guest on May-07-2021

Browse Popular Code Answers by Language