Search code examples
htmlcssoutline

How to remove outline


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>


Solution

  • Add both outline: none and border: none And you will get the result you want

    input {
        background-color: #363636;
        outline: none;
        border: none;
        color: white;
     }
    <input>