What is the color of the outer frame of input?

<input type="text" style="border-width: 0">
The

code is as above, and the effect is as follows. When focus, there is a blue border, but the corresponding style is not found. It is normal when it is not focus.

clipboard.png

Css
Nov.26,2021

focus has a blue border, usually with the following three attributes:

:focus {
    border-color: -sharp57a3f3; //
    outline: -webkit-focus-ring-color auto 5px; //outline
    box-shadow: 0 0 0 2px rgba(45,140,240,.2); //box-shadow
}

it would be nice to get rid of all the above three attributes.


outline:none


:focus{
    outline:none;
}

clipboard.png
outline:none;

clipboard.png

Menu