I can't remove the margin between two input fields

前端 未结 5 722
忘了有多久
忘了有多久 2021-01-02 02:22

I\'m trying to remove the margin between the search bar and the \"Go!\" button at the top of this page: http://beta.linksku.com/

I\'ve tried removing all styles and

5条回答
  •  臣服心动
    2021-01-02 02:27

    That whitespace is relative to your font-size. You can remove it by adding font-size:0 on the container of your inputs, in this case a form, like so:

    form {
        font-size: 0;
    }
    

提交回复
热议问题