我正在尝试在div上设置body{
background-color:black;
}
.container {
position: relative;
overflow: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
max-width: 1170px;
min-width: 300px;
margin-top: 47px;
margin-right: auto;
margin-left: auto;
min-height: 100%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.left {
width: 20%;
height: 100%;
float: left;
position: absolute;
bottom: 0px;
background-color: #364150;
border-left: 1px solid #3d4957;
max-height: none !important;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
left:0px;
}
.right {
width: 80%;
float: right;
background-color: #ffffff;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 10px;
min-height: 100%;
position: relative;
top: 0;
right: 0;
bottom: 0;
overflow-y: scroll;
}
,但它不起作用。有什么问题?有人可以帮帮我吗?
<div class="container">
<div class="left"></div>
<div class="right"></div>
</div>
\Cake\ORM\Entity
答案 0 :(得分:5)
您还需要将var a = 3;
debugger;
console.log(a += a > 2)
设置为所有父容器。
height
已更新 - http://codepen.io/anon/pen/WvJpyM
您也可以使用viewport units,例如html, body, .container {
height: 100%;
}
来避免这种情况。
答案 1 :(得分:3)
%height
只能是&#34;&#34;的高度,因此您必须设置html
和body
高度,以便设置元素的%高度在里面:
html, body{
background-color:black;
height: 100%;
}
答案 2 :(得分:-1)
尝试将容器更改为绝对位置:
.container { position:absolute; }