CSS remove default blue border

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

    Use this code:

    button {
        border : 0px;
        -moz-border-radius:7px;
        -webkit-border-radius:7px;
         border-radius:7px;
    }
    

提交回复
热议问题