我正在爲一個站點的簡單登錄頁面和我的表單不會對齊到中心。如果你看看here,你可以看到它稍微向右偏移。我已經嘗試在表單中添加一個容器div,並將其設置爲帶有margin:0 auto的塊,但沒有任何更改。我也嘗試設置class =「span6 offset 3」以將其對齊到中心,但是仍然存在一點偏移。我有一種感覺,其他div的所有div都在建立某種邊緣,但我似乎無法弄清楚如何解決這個問題。 這裏是我的HTML代碼:HTML Bootstrap表單,以及不與中心對齊
<div class="row">
<div class="span3"></div><!--/.span3-->
<div class="span6">
<div class="well span6" align="center">
<form id="contact-form" name="contact-form" method="post" action="form-processing.php">
<input class="span6" name="Name" id="Fname" type="text" placeholder="Your name" required>
<input class="span6" name="Email" id="Email" type="email" placeholder="Your email" required>
<input class="span6" name="Message" id="Message" type="text" rows="3" placeholder="What's on your mind?" required><br>
<button type="submit" class="btn btn-primary" id="button">Submit</button>
<button type="reset" class="btn">Clear</button>
</form>
</div><!--/.well span6-->
</div><!--/.span6-->
<div class="span3"></div><!--/.span3-->
</div><!--/.row-->
這是我的非引導CSS代碼:
h1 {font-family: marvel, serif; color:#060; font-size:90px; -webkit-text-stroke: 1px white;}
h2 {font-family: marvel, serif; color:#CCC; font-size:50px; -webkit-text-stroke: 1px black;}
p {color:white; font-size:20px;}
body{
padding: 40px;
margin:0 auto;
background-image: url(../img/background.jpg);
background-repeat: repeat;
background-position: center center;
}
.welcome {padding:30px 0 0 0;}
#Message {overflow:hidden;}
.well {margin:0 auto;}
.navbar-fixed-top,.navbar-fixed-bottom{position:fixed}
如果你能找出是什麼問題,我會烤你一個餡餅什麼的。謝謝。
聽起來像你欠自己一個餡餅...... –