gpt4 book ai didi

html - 按钮中的空格是什么?

转载 作者:行者123 更新时间:2023-11-28 06:21:58 26 4
gpt4 key购买 nike

buttons' spaces

<div class="buttons">
<button id="btn-search" type="submit">Google Search</button>
<button id="btn-lucky" type="submit">I'm Feeling Lucky</button>
</div>

.buttons {
max-width: 290px;
margin: auto;
}
#btn-search, #btn-lucky {
height: 34px;
padding: 0 16px;
margin:0 4px;
border: 1px solid #f2f2f2;
}

为什么会出现这些空格?
我使用 Eric Meyer 的重置。

最佳答案

您正在使用 space(  )b/w 按钮。这是解决方案。

.buttons {

max-width: 290px;

margin: auto;

}

#btn-search,

#btn-lucky {

height: 34px;

padding: 0 16px;

margin: 0px;

border: 1px solid transparent;

}
<div class="buttons">
<button id="btn-search" type="submit">Google Search</button><button id="btn-lucky" type="submit">I'm Feeling Lucky</button>
</div>

关于html - 按钮中的空格是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35535988/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com