我有一个这种结构的页面:
<div>
<div id="container">
<div id="content" >
<div class="question buttons clearfix nobg">
<input id="k3" name="k" type="hidden" value="">
<input id="h3" name="h" type="hidden" value="b07e0bc1c3751d34acbef5b8546b29ae">
<input id="s3" name="s" type="hidden" value="eyJwYWdlcGF0aCI6IFswXX0=">
<input type="hidden" name="page" value="0">
<input type="hidden" name="SID" value="1f7d2a9b3b9450ce2dd746bf0005ebe1">
<input type="hidden" name="_terminated_redirect" value="">
<div id="button-fix" class="button-fix" style="text-align:center">
<input type="hidden" name="referer" value="">
<input id="next-submit-button" type="submit" name="submitbutton" value="Submit">
</div>
</div>
</div>
</div>
</div>
我想使用css与中心对齐。什么是风格标签呢?
请建议
答案 0 :(得分:0)
<style>
#button-fix {
margin: 0 auto;
}
</style>
以下是 jsFiddle
中示例的演示答案 1 :(得分:0)
你需要在你的外部DIV上设置一个宽度(也许给它一个包装或类似的ID),然后设置它的边距 - 见下文:
#wrapper {
width:960px; /* whatever you want this to be */
margin:0 auto;
}
答案 2 :(得分:0)