最佳答案
我不知道这是否是一个常见的问题,但我不能找到解决方案,在网络上迄今为止。 我希望在另一个 div 中包装两个 div,但是这两个 div 必须对齐相同的级别(例如: 左边一个使用了包装 div 的20% 宽度,右边一个使用了另一个80% 宽度)。为了达到这个目的,我使用了下面的示例 CSS。然而,现在 wragDIV 并没有完全包装这些 DIV。包装 Div 的高度比包含在其中的两个 Div 要小。如何确保包装 Div 具有与包含的 Div 相同的最大高度?谢谢! ! !
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>liquid test</title>
<style type="text/css" media="screen">
body
{
margin: 0;
padding: 0;
height:100%;
}
#nav
{
float: left;
width: 25%;
height: 150px;
background-color: #999;
margin-bottom: 10px;
}
#content
{
float: left;
margin-left: 1%;
width: 65%;
height: 150px;
background-color: #999;
margin-bottom: 10px;
}
#wrap
{
background-color:#DDD;
height:100%;
}
</style>
</head>
<body>
<div id="wrap">
<h1>wrap1 </h1>
<div id="nav"></div>
<div id="content"><a href="index.htm">< Back to article</a></div>
</div>
</body>
</html>