简而言之,我希望 aright div float
垂直扩展100%
,但它仅在我不包含<doctype>
在我的 html中时才有效
在今天的标准中,我真的必须添加<doctype>
吗?
这是 Internet Explorer 中的结果:
这很简单html
<html>
<head>
<style type="text/css">
html, body {
padding:0;
margin:0;
height:100%;
}
#wrap {
background:red;
height:100%;
overflow:hidden;
}
#left {
background:yellow;
float:left;
width:70%;
min-height:100%;
}
#right {
background:pink;
float:right;
width:30%;
min-height:100%;
}
</style>
<body>
<div id="wrap">
<div id="left"> Content </div>
<div id="right"> Side Content </div>
</div>
</body>
</html>