Answers for "how to have a custom border radius css"

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

Browse Popular Code Answers by Language