ie6 双边距
在ie6中使用float属性的注意事项! 它的源代码和实验结果如下!
<style type="text/css"> div#demo1,div#demo2{ height:150px; width:150px; border:1px solid #0000FF; background:#99CC00;} #parent{ height:200px; width:600px; border:1px solid #FF0000; margin:0 auto;} #demo1{ margin-left:50px; float:left;} #demo2{ margin-right:50px; float:right;} </style> </head> <body> <div id="parent"> <div id="demo1"></div> <div id="demo2"></div> </div> </body> 而在ie6以上的版本中和firefox中的实验结果如下!