您好,我想知道是否无法将右列设置为与左列相同的高度,其中包含图像。一切都没有固定的高度?
小提琴:http: //jsfiddle.net/GWZuq/3/
我的 HTML:
<div class="wrapper">
<div class="left_col"><img src="http://www.monstersandcritics.de/image.php?file=downloads/downloads/musik/zaschamoktanstateofmind_1/images/group1/Zascha-Moktan-State-Of-Mind_201128_248803_1_024.jpg&width=600"></div>
<div class="right_col">some text ul etc</div>
</div>
我的CSS:
.wrapper{
width:80%;
}
.left_col{
position:relative;
width:80%;
float:left;
}
.left_col img{
position:relative;
width:100%;
height:auto;
}
.right_col{
position:relative;
width:20%;
float:left;
background-color:pink;
height:100%; /* why is this not putting right col to 100% of the parent container?
}
非常感谢!