我正在使用容器(div)进行布局,容器内有两个元素,一个用于标题的 div 和另一个用于内容的 div。标题 div 有一个固定的高度,内容的 div 必须填满可用空间。容器 div 有自己的样式,不能重叠。我的目标是创建简单的基于 div 的元素以在网页上放置简单的小部件。
我检查了其他类似的问题,例如:
但是这些解决方案都不适用于我。
我设法得到了这个 html/css:
<?xml version="1.0"?>
<html>
<head>
<style type="text/css">
.workbench {
width: 100%;
height: 100%;
background: white;
}
.widget {
width: 100px;
height: 500px;
position: absolute;
top: 50px;
left: 50px;
border: solid 1px black;
margin: 2px;
}
.widget-header {
height: 50px;
border: solid 1px red;
margin: 2px;
}
.widget-body {
position: absolute;
top: 50px;
bottom: 0px;
left: 0px;
right: 0px;
border: solid 1px blue;
overflow: hidden;
margin: 2px;
}
</style>
</head>
<body>
<div id="workbench" class="workbench">
<div id="widget" class="widget">
<div id="widget-header" class="widget-header">
Header
</div>
<div id="widget-body" class="widget-body">
Body
</div>
</div>
</div>
</body>
</html>
这在 FireFox 和 Chrome 上就像一个魅力,但在 Internet Explorer 8 上不起作用:
你能帮助我吗?