gpt4 book ai didi

asp.net - 当主要内容没有填满页面时,如何让母版页上的 ‘footer’ 内容向下推

转载 作者:行者123 更新时间:2023-12-01 00:08:38 24 4
gpt4 key购买 nike

我的母版页有以下代码:

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server" style="position:relative">
<title>Masterpage</title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="main" runat="server" style="position:relative">
<div>
<asp:ContentPlaceHolder id="MainContent" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
<br style="clear:both" />
<form id="footer" style="position:relative">
<div>
<center style="font-size:small">Footer content</center>
</div>
</form>
</body>
</html>

我的问题是,当 MainContent 没有填满页面时,页脚不在页面底部。如果主要内容没有一直向下推,有没有办法强制页脚留在页面底部?当主要内容足够“大”时,它会将页脚与内容一起向下推,并在向下滚动时显示在底部,但如果它太小则不会。

有谁知道如何解决这个问题?

最佳答案

在您的 css 中为页脚 div 使用以下内容:

bottom:0px;
position:absolute;

关于asp.net - 当主要内容没有填满页面时,如何让母版页上的 ‘footer’ 内容向下推,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/298449/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com