父 div 高度不起作用。
换行高度不起作用。我需要两个子 div 绝对值。我需要 css 技巧。不需要 jquery。
任何人都可以帮助我。
<div class="wrap">
<div class="clild"></div>
<div class="clild2"></div>
</div>
<style>
.wrap{
position:relative;
display:block;
width:600px;
margin:0 auto;
}
.clild{
position:absolute;
width:450px;
height:200px;
background:#069;
}
.clild2{
position:absolute;
width:350px;
height:300px;
background:#096;
}
</style>