在写HTML代码的时候,发现在Firefox等符合W3C标准的浏览器中,如果有一个DIV作为外部容器,内部的DIV如果设置了float样式,则外部的容器DIV因为内部没有clear,导致不能被撑开。看下面的例子:
HTML4STRICT代码:div style="width:200px;border:1px solid red;" div style="float:left;width:80px;height:80px;border:1px solid blue;"TEST DIV/div div style="float:left;width:80px;height:80px;border:1px solid blue;"TEST DIV/div div style="float:left;width:80px;height:80px;border:1px solid blue;"TEST DIV/div div style="float:left;width:80px;height:80px;border:1px solid blue;"TEST DIV/div div style="float:left;width...
[ 查看全文 ]