Firefox下樣式設定寬度奇怪現象_經驗交流

來源:互聯網
上載者:User
頁面中有一個資料列表,是table,放在一個div視窗中,結構如下:
複製代碼 代碼如下:


....列表資料....





給 container 設定了樣式 #container {width:100%; margin:10px;}
給 grid 設定了樣式 #grid {width:100%}

測試結果在IE中正常,在 Firefox 下 container 的實際寬度會超過100%而出現橫向捲軸,因為Firefox把margin算進了寬度,實際等於100%+20px>100%。
當然可以去掉div的margin定義,改用body的padding來設定,但是頁面中有其他內容要佔滿整個頁。
於是以前為瞭解決這個問題會給div在Firefox區別定義一個width:98%,這樣好像是解決了問題,但是如果瀏覽器視窗變小,Firefox下的98%+20px說不定就又大於100%而出現橫向捲軸。

出於試試看的心理,我把container的樣式改成了#container {width:100%-20; margin:10px},再到Firefox下去看看,呵呵,竟然變得正常了,和IE下一樣,真是奇怪了,width:100%-20這樣的定義應該是錯誤的呀!但是卻解決了Firefox把margin算進去的問題,進一步試下,發現隨便100%減隨便一個數字都可以,查了些資料,一直沒有明白是什麼原因。
或許就是個bug,呵呵!也許哪個高手知道原因。自己做過測試,把代碼和貼上來:



<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>test</title> </head> <body> <table style="width:100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#333333"> <tr> <td bgcolor="#FFFFFF">資料1</td> <td bgcolor="#FFFFFF">資料2</td> <td bgcolor="#FFFFFF">資料3</td> <td bgcolor="#FFFFFF">資料4</td> </tr> <tr> <td bgcolor="#FFFFFF">資料5</td> <td bgcolor="#FFFFFF">資料6</td> <td bgcolor="#FFFFFF">資料7</td> <td bgcolor="#FFFFFF">資料8</td> </tr> </table> </body> </html>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]
  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.