I can't remove the margin between two input fields

前端 未结 5 714
忘了有多久
忘了有多久 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

    This is how elements function as inline-block.

    Normally when you use inline-block elements, you often use them inside a paragraph, so the space between the letters must be consistent. inline-block elements apply to this rule too.

    If you want to remove the space completely, you can float the elements.

    float: left;
    

    You can also remove the whitespace from your template document. Like so:

    
    

提交回复
热议问题