作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试创建 div 页脚,但遇到问题。
我在容器中一个一个地放置了几个 div block 。容器有 100% 的高度。内部容器第一个 Div 有 100px 高度(标题)。Second Div(Mainbody)的所有高度都需要达到网站底部(屏幕尺寸的 bootom 部分)或更高。
Third Div 有绝对位置并且位于底部。但 Container Div 的摘要高度超过 100%,因为我在页面右侧看到滚动条。如何解决?
带有 css 的页面:height:100% 占用超过 100%
html, body {
height: 100%;
margin:0;
padding:0;
background-color: yellow;
}
.container {
position:relative;
min-height:100%;
background-color: green;
}
.header {
background-color: blue;
height: 100px;
}
.mainbody {
background-color: gray;
height: 100px;
}
.footer {
position:absolute;
bottom:0;
width: 100%;
background-color: red;
}
<body>
<div class="container">
<div class="header">
<p>
header
</p>
</div>
<div class="mainbody">
<p>
mainbody
</p>
</div>
<div class="footer">
<p>
footer
</p>
</div>
</div>
</body>
最佳答案
用浏览器打开。如该代码段所示,它不显示任何滚动条。设置
.container{ height:100%}
而不是
min-height:100%
因为它将超过页面的完整大小。
关于html - 粘在页面底部的 CSS Footer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34994705/
查看此页面:http://jsbin.com/itufix使用 IE(页面自动启用 IE7 模式)。 在这里您将找到如何使用显示 block 呈现内联元素(输入和跨度)的示例。所有元素的边距和填充都设
我有一个自定义的 UITabvleViewCell,其中有一个 UIImageView。当在 cellForRowAtIndexPath 中设置单元格时,我可以很好地设置图像(尽管我没有),但是在某些
我是一名优秀的程序员,十分优秀!