盒子模型分兩種w3c和IEcss
w3c模型html
IE盒子模型spa
對於同一段代碼code
<html> <head> <title></title> <style type="text/css"> .box{border: 1px solid red;height: 20px;width: 20px;margin: 2px;padding: 2px} </style> </head> <body> <div class="box"></div> </body> </html>
標準盒子模型結果(使用谷歌打開)htm
IE盒子模型結果使用IE打開(IE9結果)blog
通常咱們使用w3c的盒子模型,須要在開始添加<!DOCTYPE html>it
在代碼頭部添加後用IE打開結果是class