次のコードがあり、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>