CSS remove default blue border

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

    my solution (after a few months)

    button:focus {
    outline: 0;
    box-shadow: none;
    }
    
    0 讨论(0)
  • 2020-12-29 04:42

    Use this code:

    button {
        border : 0px;
        -moz-border-radius:7px;
        -webkit-border-radius:7px;
         border-radius:7px;
    }
    
    0 讨论(0)
提交回复
热议问题