Div孩子没有将铬的高度设置为100%即ie

时间:2013-03-18 22:01:57

标签: html css internet-explorer google-chrome

我有这个容器div有2个以上的子div,我希望div与类“movablebartoggleswitch”的高度为其容器div的100%,这必须在IE8和chrome中工作,但是它可以在一个或另一个,但不是两个,你能告诉我什么是错的吗?

<html>
<head>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="configdiv" class="maindiv">
<div class="simpletext">    
</div>
<br/>
<div name="containertoggleswitch" class="containertoggleswitch">
<div class="movablebartoggleswitch">        
</div>
    <div class="bartoggleswitch">       
    </div>
</div>
</div>
</body>

</html>

.maindiv
{
background-color:#00ABA9;
color:#FFF;
position:absolute;
width:250px;
height:500px;
font-family: 'Segoe UI';
font-weight: lighter;
font-size:20;
overflow-y:scroll;
overflow-x:hidden;
/*Works for all browsers except IE*/
overflow: -moz-scrollbars-vertical;
}
.simpletext
{
width:100%;
}

.containertoggleswitch
{
width:100px;
height:30px;
background-color:#FFF;
position:relative;
}

.bartoggleswitch
{
position :relative;
color:#000; 
background-color:inherit;
height:100%;
width:100%;
border-style:solid;
border-width:5px;
border-color:#FFABAF;
}

.movablebartoggleswitch
{
clear:both;
position:absolute;  
z-index:10; 
width:20%;
height:100%;
background-color:#000;
float:left;
}

2 个答案:

答案 0 :(得分:0)

问题是border样式导致元素扩展,使高度发生变化。要解决此问题,请使用box-sizing: border-box更改框模型以满足填充作为宽度的一部分

http://jsfiddle.net/XyQB4/

答案 1 :(得分:0)

不知道这是否会对您有所帮助,但我与Chrome有类似的高度问题(在其他地方工作得很好)。我让它工作的方式是在DIV id的HTML代码中,我把style="min-height: 660px" - 或者你需要它的任何高度。我的CSS中没有DIV ID的min-heightheight:auto。我确实...... body, html{height:100%; height:auto;}