twitter bootstrap margin-left -20px问题

时间:2013-06-12 09:53:08

标签: html css twitter-bootstrap

我在我的网页http://scrapp.site90.com/上使用Twitter bootstrap时出现问题。标题被包装在容器中并且周围有.row,但似乎因为margin-left:-20px这行不能与其他内容对齐。有可能解决它吗?我试图改变margin-left的值,但是布局真的搞砸了。

1 个答案:

答案 0 :(得分:1)

您可以在span*上使用pull-left,而不是使用H1

<div class="row">
        <h1 class="pull-left">Take a look at our work to see what we mean</h1>
        <div>
        <ul class="social inline pull-right">
            <li>..</li>
        </ul>
        </div>
</div>