我有一个简单的页面:
<!DOCTYPE html><html><head><title>Choose your Location - ChubbyParade.com</title>
<style type="text/css">
#sv_btn_container{
display:block;
text-align:center;
margin:0px auto;
}
#sbm_btn{
margin-left:auto;
margin-right:auto;
}
#location_selector{text-align:center;}
</style>
</head>
<body>
<div id="location_selector" style="width:300px;padding:1em;margin:0;border:1px solid #999999">
<form>
<div>Please choose your location</div>
<div id="selectors">
<div>
<select name="country" style="padding:0.5em">
<option>Country</option>
<!--etc.-->
</select>
</div>
</div>
<div style="clear:both"></div>
<div id="sv_btn_container" style="margin-top:0.5em" align="center">
<input type="submit" id="sbm_btn" value=" SAVE " class="button" style="display:none" />
</div>
</form>
</div>
</body></html>
我通过将其显示样式设置为“阻止”(上述脚本中未显示),使用 javascript 动态显示提交按钮。
我希望提交按钮居中。
但无论我尝试过哪种自动边距和文本对齐组合,按钮都会显示在其容器的左侧。