Html 将页脚粘贴到页面底部的方法
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 
原文地址: http://stackoverflow.com/questions/2354361/
Warning: these are provided under cc-by-sa 4.0 license.  You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Ways to stick footer to the bottom a page
提问by ACP
I followed the How do you get the footer to stay at the bottom of a Web page?post on stackoverflow...
我遵循了如何让页脚停留在网页底部?在stackoverflow上发帖...
But i couldn't make it too work in an asp.net web application.... I am using a master page for all pages...
但我不能让它在 asp.net web 应用程序中也能正常工作......我正在为所有页面使用母版页......
How can i make footer stick to the bottom of the page?
如何让页脚粘在页面底部?
For ref:
对于参考:
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" class="bgpatt">
<tr style="height:25px;">
<td style="width:40%">
</td>
<td  style="width:30%">
</td>
<td style="width:30%;" valign="top">
  <div id="headermenu" style="width:300px;"><ul style="width:300px;">
            <li><a title="Home" href="#" class="headerhome">Home</a></li>
            <li><a title="About Us" href="#" class="aboutus">About Us</a></li>
            <li><a title="Contact Us" href="#" class="contactus">Contact Us</a></li>
            <li><a title="Feedback" href="#" class="feedback">Feedback</a></li>
            <li><a title="Logout" href="#" class="logout">Logout</a></li>     
            </ul></div>
    </td>
</tr>
<tr style="height:25px;">
<td colspan="3">
</td>
</tr>
<tr style="height:25px;">
<td colspan="3">
</td>
</tr>
</table>
 </td>
 </tr>
<tr valign="top">
<td>
<table width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td>
                <table width="100%" cellpadding="0" cellspacing="0">
        <tr style="height:5px; background-color:#404040;">
            <td colspan="3" valign="top" style="width:100%">
                </td>
        </tr>
             </table>
                </td>
        </tr>
    </table>
</td>
</tr>
<tr>
<td>
 <table width="100%" cellpadding="0" cellspacing="0">
    <tr>
    <td style="width:45%;">
    </td>
    <td style="width:45%;">
   <div id="header" style="width:300px;"><ul id="mainMenu" runat="server">
                <li id="mainHome" runat="server"><a href="#" title="Home" class="home"><span></span>Home</a></li>
                <li id="mainManage" runat="server"><a href="Users.aspx" title="Manage" class="manage"><span></span>Manage</a></li>
                <li id="mainEnquiry" runat="server"><a href="account.aspx" title="Enquiry" class="enquiry"><span></span>Enquiry</a></li>
                <li id="mainReport" runat="server"><a href="EnquiryReport.aspx" title="Report" class="report"><span></span>Report</a></li>  
             </ul>       
</div>
    </td>
    <td style="width:10%;">
    </td>
    </tr>
    </table>
</td>
</tr>
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td style="width:1px;"><div style="width:1px; height:450px;"></div></td>
<td style="width:95%">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
    </asp:ContentPlaceHolder>
</td>
<td style="width:5%">
<asp:ContentPlaceHolder id="ContentPlaceHolder2" runat="server">
</asp:ContentPlaceHolder>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<div class="wrapper"></div>
</td>
</tr>
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%" style="height:25px;">
<tr>
<td></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
 <table border="0" cellpadding="0" cellspacing="0" width="100%" style="height:35px; top:10px;" class="footer">
                                        <tr>
                                        <td style="width:100%;" align="center">
                                            <a href="#" class="footer">Home </a>|
                                            <a href="#" class="footer">About us </a>|
                                            <a href="#" class="footer">Contact us </a>|
                                            <a href="#" class="footer">Feedback </a>
                                            </td> 
                                              </tr>
                                            <tr>
                                            <td style="width:100%;" align="center" class="footer_text">
                                             Copy Rights Xavytechnologies
                                            </td>      
                                            </tr>
                                     </table>
</td>
</tr>
</table>
采纳答案by citronas
I'm would also recommend a div structure using floating.
我也会推荐一个使用浮动的 div 结构。
Markup:
标记:
<div class="bodyWrap">
  <div class="header">
    <!-- Insert content here -->
  </div>
  <div class="content">
    <!-- Insert content here -->
  </div>
  <div class="footer">
    <!-- Insert content here -->
  </div>
  <div style="clear:both"></div>
</div>
Css:
css:
.bodyWrap
{
 width: 500px;
}
.header, .content, .footer
{
 width: 100%;
 float:left;
}
回答by Nasser Hadjloo
I suggest to use a div like
我建议使用 div 之类的
<div id="Footer"> content </div>
then in your css put this
然后在你的 css 中放这个
#Footer
{
    position: absolute;
    bottom: 0px;
    height: 3px;
    background-color: #666;
    color: #eee;
}
or you can use AjaxControlToolkit library
或者你可以使用 AjaxControlToolkit 库
I Also strongly recommand you change your layout from Table to div
我还强烈建议您将布局从 Table 更改为 div
回答by user2330678
I liked below better. It only works with an id and not with a class.
我更喜欢下面。它仅适用于 id 而不适用于类。
<div id="Footer"> content </div>    
#Footer {
                    position: fixed;
                    bottom: 0px;
        }

