Bootstrap页脚中的中心区

时间:2014-07-07 01:05:42

标签: html css twitter-bootstrap

如何将我的div集中在一个单独的div中,并在引导程序中使用类footer navbar-inverse navbar-fixed-bottom?这是我的确切代码。

<div class="footer navbar-inverse navbar-fixed-bottom">
    <div class="center-block">
        <div class="small navbar-text text-center">
            First Line<br />
            Second Line<br />
            Third Line
        </div>
    </div>
</div>

全屏图片:

enter image description here

但如果我调整浏览器的宽度,那么位置就可以了。

enter image description here enter image description here

1 个答案:

答案 0 :(得分:4)

.navbar-text向左浮动。

Fixed它适用于你:)