twitter-bootstrap – Bootstrap页脚,页面全宽

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – Bootstrap页脚,页面全宽前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用joomla设计一个网站并使用bootstrap框架.
现在我的页脚出了问题.基本上我使用简单的网格布局,我希望网站的内容部分位于页面的中心,左侧和右侧都有我已经实现的空间.
而现在我希望页脚不像中间内容,而是在页面的末尾和整个宽度而不是固定.所以我想通常向下滚动页面,在页面的末尾,页脚将以全宽显示.
搜索了很长时间但我找不到任何有效的解决方案.
我希望有人可以帮助我实现它……

以下是我使用的PHP-page和css文件的脚本

的index.PHP

<!DOCTYPE html>
<html>
<head>
    <jdoc:include type="head" />
    <Meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<body>
    <!-- main container -->
    <div class='container'>
        <!-- header -->
        <div class="mainMenuTop"/>
        <div class='row'>
            <jdoc:include type="modules" name="position-1" style="well" />
        </div>
        <div class='row'>
            <!-- main content area -->
            <div class='span12'>
                <div class="article">
                    <jdoc:include type="component" />
                </div>
            </div>
        </div>
        <!-- footer -->
        <div class='row'>
            <div class='span12'>
                <div class='footer'>
                <jdoc:include type="modules" name="footer" style="none" />
                </div>
            </div>
        </div>
    </div>
</body>
</html>

style.css文件

body 
{
    overflow-y: scroll;
    background: url(../images/Test.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
 }

.article
{
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 18px;
    background: rgba(255,255,0.5);
    background: rgba(255,255); /* The Fallback */
    font-size: 12pt;
    font-family:"Calibri",Times,serif;
}

.footer
{
    height: 50px;
    border-top: solid 1px black;
}

亲切的问候,
oodoloo

解决方法

你可以把你的页脚分开< div class =“container”>主要内容容器之后.然后,您可以指定一个不限制页脚宽度的容器类,就像主内容一样.例如.::
<div class="container">
      ...
</div>
<div id="footer" class="container-fluid">
    <div class="row">....</div>
</div>
原文链接:https://www.f2er.com/bootstrap/233828.html

猜你在找的Bootstrap相关文章