문제

I've created CheckBox with ios style:

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

jsFiddle link

Ive tried to remove the blue border that created when clicked the button, without success.

plz help me to remove it.

도움이 되었습니까?

해결책

use outline:0 this will remove the blue boarder

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

JsFiddle example

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top