CSS remove default blue border

前端 未结 8 736
死守一世寂寞
死守一世寂寞 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

    Think this should work (only tested IE10 on PC) for the border:

    button { outline: 0; }

    Want to remove the background (needed on WebKit/Blink)?

    Add:

    background: none;

    Need to get rid of the border (removes background on IE10 too):

    border: 0;

提交回复
热议问题