jsFiddle link ...">

Remove Blue Frame

I created a CheckBox with ios style:

<form>
<input id="ckbx" type="checkbox"  value="map_one">
</form>

jsFiddle link

Ive tried to remove the blue frame created when the button was pressed, without success.

plz help me remove it.

+4
source share
1 answer

use outline: 0 this will remove the blue guesthouse

    input[type="checkbox"]:focus{
        outline:0;
    }

JsFiddle example

+15
source

Source: https://habr.com/ru/post/1540552/


All Articles