作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建一个网页来显示一篇文章,它由 Bootstrap 框架提供支持。该页面有一个顶部导航栏和一个侧边栏。主要内容放在容器中。我有一个背景图像,它不会随着页面滚动而移动。导航栏固定在顶部。
因为我想让背影半透明,我做了很多工作,现在结构有点困惑。另外,我想让页脚贴在页面底部,而不是浏览器的底部。现在的问题是,随着文章的长度变化,容器如何调整高度?我尝试设置 height: 100%
,但没用。
这就是我想要的:
|____nav_______|
| | || |
| | ||side|
| | || bar|
| |______|| |
|_________|____|
但是,现在是这样的:
|______________|
| title | | |
| | | | | |
|_| |_| | |
| |____| | | |
|________|_|___|
这是我标记的一部分:
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">... </nav>
<div class="sidebar"></div>
<div class="container-back">
<div class="back"></div>
<div class="container">
<div class="col-lg-9" role="main" id="content">
<div>
<div class="post">
<div class="post-header">
<div class="post-title"></div>
<div class="post-header-buttom">
<div class="post-timestamp"></div>
<div class="post-tag"></div>
</div>
</div>
<div class="post-body font-kai">
content
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="panel-footer">Copyright</footer>
CSS:
.back {
position: absolute;
display: block;
width: 100%;
min-height: 2000px;
height: 100%;
margin-left: 0px;
margin-right: 0px;
background: url(images/back.png);
background-attachment: fixed;
background-repeat: repeat-y;
opacity: 0.35;
z-index: -1;
}
.col-lg-9#content {
height: 1500px;
margin-top: 52px;
margin-left: 5px;
margin-right: 5px;
margin-top: 0px;
padding: 15px;
background: rgba(255, 255, 255, 0.9);
z-index: 1;
}
.container {
position: relative;
height: 1500px;
margin-left: 5px;
margin-right: 5px;
width: auto;
}
.container-back {
margin-top: 52px;
min-height: 100%;
height: 100%;
}
.post {
margin: 10px;
padding: 10px;
}
最佳答案
你应该:
position: relative
至 container-back
不是 container
因为那是绝对定位元素的父元素 back
</dig>
在 footer
之前标记关闭`container-back关于html - 如何使背景图像充满页面和页脚粘在页面底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35221865/
查看此页面:http://jsbin.com/itufix使用 IE(页面自动启用 IE7 模式)。 在这里您将找到如何使用显示 block 呈现内联元素(输入和跨度)的示例。所有元素的边距和填充都设
我有一个自定义的 UITabvleViewCell,其中有一个 UIImageView。当在 cellForRowAtIndexPath 中设置单元格时,我可以很好地设置图像(尽管我没有),但是在某些
我是一名优秀的程序员,十分优秀!