Answers for "remove outline radius"

CSS
0

remove border radius select css

#mySelect {
    border-radius: 0
    -webkit-appearance: none;
}
Posted by: Guest on April-20-2020
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