gpt4 book ai didi

html - 如何使 div 的按钮居中?

转载 作者:行者123 更新时间:2023-11-28 13:07:57 26 4
gpt4 key购买 nike

我有以下代码,我试图将所有输入集中在 div 中。

这是 CSS 片段:

#mainCalc label {
display: inline;
width: 8em;
text-align: right;
padding-right: 1em;
float: left; }

#mainCalc input {

display: inline;
float: left; }

#mainCalc br {
clear: left;

这是 HTML 片段:

<div id="mainCalc">
<input type="button" id="dollar" value="Dollar" />
<input type="button" id="quarter" value="Quarter" />
<input type="button" id="dime" value="Dime" />
<input type="button" id="nickel" value="Nickel" />
<input type="button" id="refund" value="Refund" /><br />
<label for="amount">$</label>
<input type="text" id="amount" /><br/>
<input type="button" id="coke" value="Coke" />
<input type="button" id="dietCoke" value="Diet Coke" />
<input type="button" id="mountainDew" value="Mountain Dew" />
<input type="button" id="drPepper" value="Dr. Pepper" />
<input type="button" id="rootBeer" value="Root Beer" />
<input type="button" id="water" value="Water" /> <br /><br />
</div>

最佳答案

您可以添加:

#mainCalc {
text-align: center;
}

并从 #mainCalc label#mainCalc input 中删除 float: left;

Demo

关于html - 如何使 div 的按钮居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15752325/

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