CSS remove default blue border

前端 未结 8 691
死守一世寂寞
死守一世寂寞 2020-12-29 03:47

I have a form with multiple buttons where I use a JavaScript to submit the second button when some one presses enter.

This works great but if I open this form in IE

8条回答
  •  攒了一身酷
    2020-12-29 04:29

    This may help you. Use following CSS properties:

    input, 
    input:active, 
    input:focus {     
        outline: 0;     
        outline-style: none;     
        outline-width: 0; 
    }
    

提交回复
热议问题