[ 来源:http://www.it55.com | 作者: | 时间:2007-11-22 | 收藏 | 推荐 ] 【大 中 小】
使用zoom、overflow解决IE6、IE7、FF下嵌套容器清除浮动问题

| 以下是引用片段: <style type="text/css"> .content{ border:10px solid #F00;} .text{ width:200px; height:300px; background:#000;} </style> <body bgcolor="#FFFFFF"> <div class="content"> <div class="text"></div> </div> </body> |

| 以下是引用片段: <style type="text/css"> .content{ border:10px solid #F00; width:200px; overflow:auto;} .text{ width:200px; height:300px; background:#000; float:left;} </style> <body bgcolor="#FFFFFF"> <div class="content"> <div class="text"></div> </div> </body> |
| 以下是引用片段: <style type="text/css"> .content{ border:10px solid #F00; overflow:auto; zoom:1;} .text{ width:200px; height:300px; background:#000; float:left;} </style> <body bgcolor="#FFFFFF"> <div class="content"> <div class="text"></div> </div> </body> |
(编辑:IT资讯之家 www.it55.com)