0

这是我的 Aspx 代码,页脚需要在页面展开时始终位于底部

, , 请稍等...> 技术支持 FFReporting" CssClass="footer" Font-Italic="false"Font-Bold="false" Font-Size="X-Small" ForeColor="#000">

这是css文件

.wrapper
{
    min-height: 99%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -15px;  /* ;the bottom margin is the negative value of the footer's height */
    padding: 0;
}
.footer, .push
{
    height: 16px; /* .push must be the same height as .footer */
    clear: both;
    text-align: center;
    /*font: 10px Verdana, Arial;*/
    font: 10px Arial;
    background: url("../Images/invida_06.jpg") repeat-x;
    /*background-color: #497097;*/
    color: White !important;
}

我需要底线总是在底部,当页面信息较少时,但是当页面有更多显示数据时,它总是在所有数据之后打印

我尝试了该站点中的所有内容,但直到找到解决方案。帮我!!!

4

2 回答 2

2

这种技术总是有效的,它被称为粘页脚

于 2013-04-15T06:15:37.463 回答
1

现在习惯了这段代码

这是示例 css 代码

html, body {height: 100%;}

#wrap {min-height: 100%;background:red;}

#main {overflow:auto;
padding-bottom: 180px;}  /* must be same height as the footer */
#footer {position: relative;background:green;
margin-top: -180px; /* negative value of footer height */
        height: 180px;
        clear:both;} 

HTML

<div id="wrap">

    <div id="main">

    </div>

</div>

<div id="footer">

</div>

现场演示

于 2013-04-15T06:20:31.237 回答