Can anyone say how to remove this outline? outline-color
is doing nothing. If I use outline: none
it becomes convex.
Example:
I tried to change the color of the outline, but no changes.
input {
outline-style: auto;
background-color: #363636;
/* deactivated by editor
position: absolute;
left: 650px;
bottom: 115px;
*/
}
<input>
3
Answers
outline-style: solid
outline-color: #fff
border: none
Add both
outline: none
andborder: none
And you will get the result you want
To change the color, size, and style of the outline. You should use the CSS property
outline
.The outline property shorthand works like this:
outline: width style color;
Also, the same
border
of the input color, size, and style can change:border: width style color;
Example Here: