Safari浏览器中的中心元素

Safari浏览器中的中心元素

我有一个简单的页面:

<!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动态显示submit按钮,方法是将其显示样式设置为'block'(上面的脚本中没有显示)。
我希望“提交”按钮居中。
但不管我尝试过自动边距和文本对齐的组合,按钮都会显示在容器的左侧。

最佳答案

设置提交按钮的宽度,例如:

#sbm_btn{
margin-left:auto;
margin-right:auto;
width:100px;
height:30px;

}

关于html - Safari浏览器中的中心元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16997903/

10-11 13:10