我使用bootstrap 2.2.2并具有以下html标记。
<div class="container">
<h1>Responsive boxes</h1>
<div class="row-fluid">
<div class="span3">
<h3>M. 1</h3>
</div>
<div class="span3">
<h3>M. 2</h3>
</div>
<div class="span3">
<h3>M. 3</h3>
</div>
<div class="span3">
<h3>M. 4</h3>
</div>
</div>
</div> <!-- /container -->
和css标记如下:
body {
background-color: #fff;
font-family: 'Cabin', Helvetica, Arial, sans-serif;
width: 100%;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Lobster', Georgia, Times, serif;
}
h3{
color: #fff;
font-size: 139px;
line-height: 171px;
}
.span3 {
background: rgb(255, 81, 10);
height: 200px;
overflow: hidden;
margin-bottom: 30px;
}
这个标记在桌面上运行正常,当我调整视口大小(例如iphone)框时,按预期更小,但右边距会被删除。只有左边距。我希望左右边距对齐。
如何解决这个问题?
答案 0 :(得分:0)
这就是你追求的目标吗? http://jsfiddle.net/panchroma/BkNSL/
我评论了你体内的宽度css
body {
background-color: #fff;
font-family: 'Cabin', Helvetica, Arial, sans-serif;
/* width: 100%;*/
text-align: center;
}