How to put the height of a div that contains other with absolute position?
<html>
<head>
<style type="text/css">
.a{
}
.b{
position:relative;
}
.c{
position:absolute;
}
</style>
</head>
<body>
<div class="a">
<div class="b">
<div class="c">
ESTO ES LO QUE CONTIENE EL DIV<br/>
ESTO ES LO QUE CONTIENE EL DIV<br/>
ESTO ES LO QUE CONTIENE EL DIV<br/>
ESTO ES LO QUE CONTIENE EL DIV<br/>
</div>
</div>
</div>
</body>
</html>
The height of the div class "a" is zero
cneed to be positioned absolutely? If you change its position (i.e. modify itstopandleftstyles), are you expectingaandbto change in size and/or position? – Emmett♦ Dec 1 '10 at 15:17