作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望页脚固定在屏幕的末尾我添加到 <h:body style="display: block;">
没有变化,我添加到<div id="footer">
属性 style="position: fixed"
并且没有变化。我页面页脚的图片在下面
最佳答案
您可以试试这个 html 代码,它会起作用。 但是它需要#footer
脱离文档流。所以这就是您必须使用 width: 100%
的原因。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<style type="text/css">
*
{
padding: 0;
margin: 0;
}
html, body
{
min-height: 100%;
height: 100%;
}
#footer
{
position: absolute;
bottom: 0px;
/* width: 100%; */
}
</style>
</head>
<body>
<div id="footer">
this is a footer
</div>
</body>
</html>
因此,我建议改用这种 html 结构 - 将保留文档流,并为您提供一个干净的 (html4) 结构。
<style type="text/css">
*
{
padding: 0;
margin: 0;
}
html, body
{
min-height: 100%;
height: 100%;
}
#header { height: 20%; }
#content { height: 70%; }
#footer { height: 10%; }
</style>
<div id="header"></div>
<div id="content"></div>
<div id="footer">
this is a footer
</div>
关于html - 如何修复屏幕末尾的页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19024679/
我是一名优秀的程序员,十分优秀!