如何将我的div放在我内容的最底层? 所以在我的页面的末尾没有任何关系(由内容生成)我想要一些页脚,但我不想使用页脚标记,我需要在其他页面中实现它aswel。
在这种情况下,它是关于分类="底部"
我的代码在
下面 <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=yes">
<title>Moworkflow app</title>
<link rel="stylesheet" type="text/css" href="advertentie.css" />
<head>
<body>
<!-- wrapper -->
<div id="wrapper">
<!-- header -->
<div id="header" align="center">
<ul>
<li><a href="#">img logo</a></li>
<li><a href="#">Aanbod</a></li>
<li><a href="#">Vraag</a></li>
</ul>
</div>
<!-- filter -->
<div id="filter">
</div>
<!-- content -->
<div id="content" align="center">
<table cellspacing="10" class="tablestyle">
<tr>
<td><h3>Advertentiegegevens</h3></td>
</tr>
<tr>
<td>Soortnaam</td>
</tr>
<tr>
<td><input type="text" class="invoerveld"></td>
</tr>
<tr>
<td>Kleur</td>
</tr>
<tr>
<td><input type="text" class="invoerveld"></td>
</tr>
<tr>
<td>Aantal</td>
</tr>
<tr>
<td><input type="text" class="invoerveld"></td>
</tr>
<tr>
<td>Prijs</td>
</tr>
<tr>
<td><input type="text" class="invoerveld"></td>
</tr>
</table>
</div>
<!-- bottom -->
<div id="bottom" align="center">
</div>
</body>
</html>
body {
margin:0;
width:100vw;
background:#fff;
font-family: arial;
}
#wrapper {
position: absolute;
height: 100%;
min-height: 456px;
width: 100%;
}
#header {
position: fixed;
width: 100%;
height: 60px;
background: #0d82d7;
z-index: 4;
opacity: 0.96;
}
ul {
display: table;
width: 100%;
height: 60px;
list-style: none;
padding-left:0;
margin:0;
}
li {
display: table-cell;
text-align: center;
line-height: 60px;
text-decoration: none;
border-right: 1px solid #0d82d7;
}
li a {
text-decoration: none;
color: white;
}
#filter {
background: #0873c0;
position: fixed;
top: 60px;
width: 100%;
height: 30px;
z-index: 3;
opacity: 0.96;
}
#content {
position: absolute;
background-color: white;
width: 100%;
top: 70px;
margin-top: 20px;
bottom: 30px;
display: table;
z-index: 0;
}
.tablestyle {
width: 100%;
padding: 5px;
padding-left: 50px;
padding-right: 50px;
}
.invoerveld {
width: 100%;
height: 30px;
border-radius: 5px;
border-color: #0d82d7;
border-style: solid;
border-width: 1px;
margin-bottom: 10px;
}
#bottom {
position: relative;
width: 100%;
background-color: #0d82d7;
height: 30px;
bottom: 0px;
margin-bottom: 0px;
opacity: 0.9;
}
答案 0 :(得分:0)
使用以下内容更改底部ID css:
#bottom {
position: fixed;
width: 100%;
background-color: #0d82d7;
height: 30px;
margin-bottom: 0px;
opacity: 0.9;
bottom:0;
}
还要检查jsfiddle,你想要它是这样吗?
答案 1 :(得分:0)
如果您希望您的页脚跟随您的内容,则应将其删除:
#content {position:absolute;}
原因是,绝对定位的元素被从页面正常流中取出,因此下面的兄弟元素不像通常那样位于它们之下。
更新: 为了避免页脚+内容比浏览器高度短,你可以给你的内容100%高度减去标题的高度..这样的事情:
#content {min-height:calc(100% - 50px);}
答案 2 :(得分:0)
.bottom {
position:absolute;
bottom:0;
left:0;right:0;
margin:auto auto;
}
这会将一个元素与某个元素的底部对齐,如果你想包含它,那么就给父元素position:relative;