IE與FF下css解析差異處理

2021-08-30 17:03:43 字數 351 閱讀 4643

[size=medium][color=orange]大部分都是用!important來hack,對於ie6和firefox測試可以正常顯示

但是ie7對!important可以正確解釋,會導致頁面沒按要求顯示!搜尋了一下,找到乙個針對ie7不錯的hack方式就是使用「*+html」,現在用ie7瀏覽一下,應該沒有問題了。[/color][/size]

[size=medium]現在寫乙個css可以這樣:[/size]

#example  /* moz */

* html #example /* ie6 */

*+html #example /* ie7 */

IE與FF的CSS區別

ie和ff對盒模型的解釋區別 ie和ff對盒模型的解釋也不一樣,說明 test test 顯示的寬頻是 650px ie box的總寬度是 width padding border margin寬度總和 ff box的總寬度就是 width的寬度,padding border margin的寬度在含...

IE與FF處理Attribute的幾點差異

前端開發中,經常需要動態的新增 移除或者獲取元素的attribute。也就是說經常會用到setattribute removeattribute和getattribute。今天要討論的是開發中遇到的幾處ie與firefox對attribute操作的差異。屬性名大小寫 在firefox中,屬性沒有小寫...

css樣式在FF和IE下的區別

firefox div 設定 margin left,margin right 為 auto 時已經居中,ie 不行 firefox body 設定 text align 時,div 需要設定 margin auto 主要是 margin left,margin right 方可居中 firefox...