我正在尝试设置 2 个 div 的大小,以 70 - 30 % 的比例填充页面。
如果不设置“html,body”的大小,我怎样才能让 div 显示到正确的高度。
目前它显示两行文本的高度。谢谢
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<div style="overflow: hidden; clear: both;">
<div style="background-color: blue; height: 70%;">Top</div>
<div style="background-color: red; height: 30%;">bottom</div>
</div>
</body>
</html>