Подсветка Input

1

При клике на Input, Button, Textarea элемент обводится синим цветом. Как убрать эту обводку?
P.S. Пробовал вот так

textarea, textarea:focus, textarea:active:focus, textarea.active:focus,
textarea.focus, textarea:active.focus, textarea.active.focus {
    outline: none;
    box-shadow: none;
}

 не помогает.

HTML
CSS
Bootstrap

1 ответов

2

Пример:

https://jsfiddle.net/ffL2yqg5/1/

<input type="text">
<textarea name="" id="" cols="30" rows="10"></textarea>
input, textarea, textarea:focus, textarea:active:focus, textarea.active:focus,
textarea.focus, textarea:active.focus, textarea.active.focus {
    outline: none;
    box-shadow: none;
}

Sign up or Log in to write an answer