今晚发现ie6下原来还有一个bug,看代码:
<!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></title> <style type="text/css"> *{ margin:0; padding:0;} #layout{ padding-top:10px;} #layout .test1,#layout .test2{ height:20px; border:1px solid #ccc;} #layout .test1{ float:left;} #layout .test2{ clear:both;} </style> </head> <body> <div id="layout"> <div class="test1">test1</div> <div class="test2">test2</div> </div> </body> </html>