I have the following code:
<!doctype html>
<html>
<head>
<style type="text/css">
#left {
float: left;
}
#left_top, #left_bottom {
height: 50%; /* Not working... */
}
#right {
float: left;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="left">
<div id="left_top">A</div>
<div id="left_bottom">B</div>
</div>
<div id="right">
Content
<br />
Content
<br />
Content
</div>
</div>
</body>
</html>
The two DIVs with the IDs left_top and left_bottom should take up 50% of the height of the surrounding DIV (#left). How can I make that happen?
Thanks and regards!