|
- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>7、IE6的3像素bug【视频】</title>
- <style type="text/css">
- <!--
- .side { background: #33CC00; float: left; height: 500px; width: 200px; }
- .layout { margin: 0px auto; width: 600px; }
- .main { background: #FFCC00; height: 500px; float: right; width: 400px; }
- -->
- </style>
- </head>
- <body>
- <div class="layout">
- <div class="side">此处显示 class "side" 的内容</div>
- <div class="main">此处显示 class "main" 的内容</div>
- </div>
- </body>
- </html>
复制代码 [code=Xml width=600px]<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>7、IE6的3像素bug【视频】</title>
<style type="text/css">
<!--
.side { background: #33CC00; float: left; height: 500px; width: 200px; }
.layout { margin: 0px auto; width: 600px; }
.main { background: #FFCC00; height: 500px; float: right; width: 400px; }
-->
</style>
</head>
<body>
<div class="layout">
<div class="side">此处显示 class "side" 的内容</div>
<div class="main">此处显示 class "main" 的内容</div>
</div>
</body>
</html>
[/code]
|
|