【问题标题】:How to set padding/margin top to footer in css3如何在css3中将填充/边距设置为页脚
【发布时间】:2019-02-08 22:38:27
【问题描述】:

滚动时我无法查看我的内容,因为粘性页脚隐藏了内容。我想始终将页脚设置为边缘顶部或填充顶部以能够看到内容。如何将页边距顶部或填充顶部设置为粘性页脚?如果我添加stickyfooter,我需要在内容和stickyfooter 之间留一些空间。

http://jsfiddle.net/a6c8rf4y/1/

#footer
{       
bottom:0px;
width:100%;
height:50px;
position:fixed;    
height: 50px;
line-height: 50px;
background-color: #C97;
}

【问题讨论】:

    标签: css


    【解决方案1】:

    通过添加

    .content {
      margin-bottom: 50px;
    }
    

    对于您的 CSS,您的内容会在底部留出足够的空间,以便在用户一直向下滚动时让您的粘滞页脚适应。

    【讨论】:

    • 删除页脚后有空间,删除页脚后不需要空间
    • 是用 jquery 或 js 删除的页脚部分
    • 手动...我想要在所有条件下,页脚部分的边距顶部为 50 像素;在这种情况下,只有我可以看到所有带页脚或不带页脚的内容。
    【解决方案2】:

    您可以使用class "gap-bottom" 设置新的div 并在<div class="content"></div> 完成之前将其设置在底部。

    这是工作示例。

    *
    {
        margin: 0px;
        padding: 0px;
    }
    html, body
    {
        height: 100%;
    }
    body
    {
        background-color: #bbb;
    }
    #wrapper
    {
        min-height: 99%;
        height: inherit;
        width: 950px;
        margin-left: auto;
        margin-right: auto;
    }
    #header
    {
        background-color: #C97;
        line-height: auto;
        text-align: center;
        font-family: "Lucida Console";
        font-weight: bold;
        font-size: 2.5em;
    }
    #main-section
    {
        background-color: #ddd;
        bottom: 50px;
        top:47px;
        width:100%;
    }
    #footer
    {       
        bottom:0px;
        width:100%;
        height:50px;
        position:fixed;  // this is the key
        height: 50px;
        line-height: 50px;
        background-color: #C97;
    }
    #footer_inner{
        text-align:center;
    }
    .gap-bottom{
      margin-bottom: 50px;
    }
    <div id="wrap">
    
        <div id="header">
            header...
        </div> <!-- end of header -->
    
        <div id="main-section">
          <div class="content">
                    <div class="gap"></div>
                    <p>First line...............</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>Long content goes here...</p>
                    <p>586 Long content goes here...</p>
                    <p>893 Long content goes here...</p>
                    <p>568 Long content goes here...</p>
                    <p>123 Long content goes here...</p>
                    <p>123 Long content goes here...</p>
                    <p>Last line................</p>
                    <div class="gap gap-bottom"></div>
                </div>
        </div> <!-- end of main section -->
    
    </div> <!-- end of wrapper -->
    
    <div id="footer">
        <div id="footer_inner">footer...</div>
    </div> <!-- end of footer -->

    【讨论】:

      猜你喜欢
      • 2011-03-14
      • 2015-08-13
      • 1970-01-01
      • 2012-06-02
      • 1970-01-01
      • 2018-08-03
      • 1970-01-01
      • 2012-02-21
      • 2013-01-09
      相关资源
      最近更新 更多