CSS remove default blue border

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

    Simply add border-radius to develop the button look:

    -moz-border-radius:7px;
    -webkit-border-radius:7px;
    border-radius:7px;
    

提交回复
热议问题