CSS Button has a border

前端 未结 7 452
旧巷少年郎
旧巷少年郎 2021-01-23 21:58

I am trying to define a custom css button for my search form. I cant figure out why this particular button has a strange border around it? I need to get it removed but cannot

7条回答
  •  伪装坚强ぢ
    2021-01-23 22:21

    If you add the following code above your code, it will work:

    button {
            border: medium none;
            margin: 0;
            padding: 0;
    }
    

    This code reset some of the default styles in the browsers.

提交回复
热议问题