如下两栏 html,Opera 10 下改变浏览器大小的时候,左栏高度不动
是 Opera 的 bug 还是代码上的?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>layout</title>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body style="position: relative">
<div style="position: absolute;
left: 0; width: 200px; top: 100px; bottom: 100px;
background: blue;">LEFT</div>
<div style="position: absolute;
right: 0; left: 200px; top: 100px; bottom: 100px;
background: red;">RIGHT</div>
</body>
</html>
--
修改:withinsea FROM 221.221.160.55
FROM 221.221.160.55