0
經過一個小時的隔離問題,我可以發佈這:) :)我有一個本地文件的問題,但不是在生產中。唯一的區別是在製作時,html文件是內聯的。Bootstrap HTML回車
我使用的是默認的引導3.3.5這個CSS類:
<style>
.v-center {
display: inline-block;
float: none;
}
</style>
我的問題是,我沒有相同的結果與兩個代碼:
代碼1:
<div class="row">
<div class="col-md-4 v-center">
col-md-4
</div><div class="col-md-8 v-center">
col-md-8
</div>
</div>
<div class="row">
<div class="col-md-4 v-center">
col-md-4
</div>
<div class="col-md-8 v-center">
col-md-8
</div>
</div>
你可以在這裏發現了兩個例子:
http://relationeo.com/test.html
http://relationeo.com/test2.html
該錯誤是發生時窗口是> 990px。
爲什麼回車符會打斷?
謝謝
我建議你閱讀這篇文章:http://stackoverflow.com/questions/5078239/how-to-remove-the-space-between-inline-block-elements – morgul