gpt4 book ai didi

php - 如何在多个页面上将页脚位置保持在内容下方

转载 作者:太空宇宙 更新时间:2023-11-04 07:21:36 24 4
gpt4 key购买 nike

所以我正在学习 HTML、CSS、PHP,并且我正在使用 php include 添加页眉和页脚我可以将页脚设置为每个页面的特定高度或通过创建单独的样式表单独设置。

有没有办法使用 php include 使页脚出现在每个页面的内容下方?当每页的内容长度不同时?

这是我的页脚代码

HTML

<footer>
<ul>
<a href="../../page1.php">
<li>page1</li>
</a>
<a href="../../page2.php">
<li>page2</li>
</a>
<a href="../../page3.php">
<li>page3</li>
</a>
<a href="../../page4.php">
<li>page4</li>
</a>
<a href="../../page5.php">
<li>page5</li>
</a>
</ul>
</footer>

CSS

footer {
padding: 20px;
margin-top: 450px;
height: 1%;
color: #ffffff;
background-color: #30323D;
text-align: center;
}

footer ul {
margin-left: 0;
padding: 0;
list-style-type: none;
float: left;
}

footer ul a {
text-decoration: none;
color: #fff
}

footer p {
margin-top: 120px;
}

When using position absolute

最佳答案

我已经能够解决我遇到的问题

这是一个 JSFiddle

https://jsfiddle.net/lewisjames101/4h20Lwzm/

HTML
<div id="container">
<div id="header">My Header</div>
<div id="body">Small amount of content</div>
<div id="footer">My Footer</div>
</div>



CSS

html,
body {
margin:0;
padding:0;
height:100%;
}
#container {
min-height:100%;
position:relative;
}
#header {
background:#ff0;
padding:10px;
}
#body {
padding:10px;
padding-bottom:60px; /* Height of the footer */
}
#footer {
position:absolute;
bottom:0;
width:100%;
height:60px; /* Height of the footer */
background:#6cf;
}

谢谢你的意见,很有帮助

关于php - 如何在多个页面上将页脚位置保持在内容下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50220572/

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