显示列表

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>IE6中注释引起的异常</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">
.Container { width:300px; height:10px; background-color:#FFF; border:10px solid blue; }
.Container .Left { width:200px; height:10px; float:left; background-color:yellow; }
.Container .Right { width:100px; height:10px; float:right; background-color:green; }
</style>
</head>
<body>
<br />
<div class="Container">
   <div class="Left"></div>
   <div class="Right"></div>
</div>

<br />
<div class="Container">
   <div class="Left"></div><!-- 注释会引起异常 -->
   <div class="Right"></div>
</div>

<br />
<div class="Container">
   <div class="Left"></div>
   <div class="Right"></div><!-- 注释不会引起异常 -->
</div>
</body>
</html>

标签:异常 
返回摘要 | 分类(CSS) | 访问(19) | 编辑