中国开发网: 论坛: 程序员情感CBD: 贴子 529545
有狐
新版释出,经测试IE7,Firefox,Safari效果一致,DOCTYPE 可以自由保留或去除,不是用position:absolute
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
margin:0;
padding:0;
}
#left {
float:left;
border: 2px solid blue;
background-color: red;
width: 200px;
}
#right {
border: 2px solid red;
background-color: blue;
margin-left:204px;
width: auto;
}
* html #right {
margin-left: 200px;
}
</style>
</head>
<body>

<div id="left">LEFT LEFT LEFT LEFT LEFT LEFT LEFT LEFT LEFT LEFT LEFT</div>
<div id="right">RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT RIGHT </div>

</body>
</html>

相关信息:


欢迎光临本社区,您还没有登录,不能发贴子。请在 这里登录