跳到主要內容

[CSS] z-index 在不同瀏覽器繼承問題

今天會討論到這個課題,是因為要實做一個Popup dialog,所以我們希望的結果如下圖。


可是在IE7 卻發生了這樣的情況。


Popup不論怎麼設定z-index都無法浮在最上層,我們看一下html架構發生什麼事情。



<!DOCTYPE html>
<html>
<head>
  <title>Demo mask overlay</title>
  <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.2.0/build/cssreset/reset-min.css">
  <style>
    #mask {
        width: 100%;
        height: 100%;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        /* other browser*/
        opacity: 0.5;
        /* IE 5-7 */
        filter: alpha(opacity=50);
        /* IE 8 */        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    }    
    #page {
        position: relative;
        border: 1px solid #ccc;
        background: #ccc;
        top: 20px;
        left: 100px;
        width: 80%;
        height: 50px;
    }
    #page .overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200px;
        height: 200px;
        border: 1px solid #000;
        background: #fff;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        color: #999;
        font-size: 131%;
        z-index: 1;
    }    
  </style>
</head>
<body>
    <div id="page">
        <h1> I am div </h1>
        <div class="overlay">
            <p>This is popup. </p>
        </div>
    </div>
    <div id="mask">
    </div>
</body>
</html>

從這邊可以發現,在IE 7裡面因為overlay 的上一個層級 page,有設定relative,導致overlay有繼承行為,因此讓overlay的z-index無法作用。

這樣子思考起來除了IE 7以外的瀏覽器(chrome、safari、Opera、IE 8...)的z-index繼承邏輯似乎有錯誤,沒有看錯吧!?z-index 在IE 7才是標準?

為了幫其他瀏覽器證明一下他們是有繼承概念的,因此幫幾個div加上z-index。

<!DOCTYPE html>
<html>
<head>
  <title>Demo mask overlay</title>
  <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.2.0/build/cssreset/reset-min.css">
  <style>
    #mask {
        width: 100%;
        height: 100%;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        /* other browser*/
        opacity: 0.5;
        /* IE 5-7 */
        filter: alpha(opacity=50);
        /* IE 8 */        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        z-index: 0;
    }    
    #page {
        position: relative;
        border: 1px solid #ccc;
        background: #ccc;
        top: 20px;
        left: 100px;
        width: 80%;
        height: 50px;
        z-index: 0;
    }
    #page .overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200px;
        height: 200px;
        border: 1px solid #000;
        background: #fff;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        color: #999;
        font-size: 131%;
        z-index: 1;
    }    
  </style>
</head>
<body>
    <div id="page">
        <h1> I am div </h1>
        <div class="overlay">
            <p>This is popup. </p>
        </div>
    </div>
    <div id="mask">
    </div>
</body>
</html>

修改的部份,如紅字所示,在mask、page都加上了z-index: 0;,輸出結果如下圖。


經過測試後發現,popup已經沉下去mask底下了,表示其他瀏覽器還是會有繼承z-index的動作,因此有底下幾點推論:

  1. IE 7會將父層z-index預設為0。
  2. 其他瀏覽器不會預設z-index。
  3. 並不是z-index設定值越大就一定會在最上層,同時考慮繼承問題。
  4. 使用浮動在最上層的獨立div,盡量靠近body層級。
以上幾點,是最後小小的推論,歡迎大家討論。

留言

  1. 撰寫客戶網站時剛好碰到這問題.
    看來似乎如您所說的會將父級設為0
    顧我將其餘的區域設為負數便終於解決了
    謝謝您分享

    回覆刪除
  2. @SHAWN, 蠻多時候使用div定位,多少都會遇到z-index,尤其是層層包覆的時候特別常見,感謝您的回應。

    另外我不確定您的問題,其實可以測試看看把某個層級div的z-index: 1;只要比其他高,其實就可以浮在最上層,試試看。

    回覆刪除
  3. 找到了很細節的魔鬼,真不簡單! =b
    其實照 W3C 的規範,IE7 跟 FF 都沒有錯。

    IE7 對 z-index 的預設值是 0、而 FF 則是 auto。http://josephj.com/lab/ie7-zindex/demo.html

    真的在負責處理 z-index 的顯示叫 Stacking Context。W3C 的文件中有一句話「The root element forms the root stacking context. Other stacking contexts are generated by any positioned element (including relatively positioned elements) having a computed value of 'z-index' other than 'auto'.」如果你設定了 position:fixed|absolute|relative、但卻沒有設定 z-index 為 auto 以外的數值的話,它對應的 Stacking Context 還是根節點。所以此時就會直接比 #mask 與 #overlay 的值,.overlay 不管 #page 是什麼碗糕、直接參考根節點,因為 z-index:1,所以 .overlay 直接勝出。http://www.w3.org/TR/CSS2/visuren.html#z-index

    繼承的論點很怪,z-index 是不會繼承的,他只會依照此元素的 Stacking Context 與其他在此 Stacking Context 的元素做比對、做出正確的排序 。

    我在開發時沒有碰過這樣的問題,我會先把這樣要浮在上面的模組往根節點去丟(document.body.appendChild 或一開始就放在對的地方),也一律設定節點的 position 與 z-index 屬性,讓結構清楚減少困擾。http://www.tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp

    回覆刪除
  4. @josephj
    如果使用overlay的話,也的確需要使用上javascript(因此無法考慮js disable狀態),因此採用document.body.appendChild,將overlay div 搬移的確是一個不錯的方法。

    關於z-index的繼承問題,為了釐清真相還是採用瀏覽器實測,果然處處都是火坑啊,這一切的一切都要感謝我後座的夥伴,他把這個問題發掘,讓我對於z-index認知更深入瞭解,感謝各位夥伴!=b

    回覆刪除
  5. I think the admin of this web site is really working hard in favor of
    his site, for the reason that here every stuff is quality based
    material.
    My weblog :: explained here

    回覆刪除
  6. If you want to make sure that you have good Phone sex,
    you should develop separate personas so that you can please
    more callers. This is where it can get very explicit when it comes
    to phone chat. In the case of teenagers parents should supervise their computer activity.


    Feel free to surf to my webpage ... telefon sex

    回覆刪除
  7. The little fan is also very quiet; much quieter than a steam Vaporizer.
    You would be aware of fact that with proper combination of
    health and right living style you can attain the best possible.
    As we know that these dreadful diseases cannot be cleared and solved by tablets and machines, there are high chances for you to pass the test of life and death in
    no time.

    回覆刪除
  8. The little fan is also very quiet; much quieter than a steam Vaporizer.
    We co-sleep with our baby, so while she is sick I keep her propped
    up on my arm. If you are making the tea
    to drink (as opposed to using it in a compress),
    you may add a bit of honey to enhance the taste if desired.

    回覆刪除
  9. The threatening actions may not even be very serious to frighten a person from braking out
    of such a socially standardized habit, and may not even be
    meant as a threat. Our respiratory tract starts from our nasal passage and
    ends in the alveoli in the lungs where the exchange of gasses takes place.
    Hydrogen cyanide - used as an industrial pesticide.


    Look into my webpage :: Vaporizer

    回覆刪除
  10. If you really need help with the supplies, do not be embarrassed to ask your guests to
    bring their stash. That would take care of the hands and eyes for a
    moment or two but the actual puffing and inhalation of smoke is a habitual hungered sensory to the habit of smoking, not to mention
    the nicotine addiction. Blame it on the rise in the level of stress people are living under
    or credit it to the extensive work by marketers, fact stays the
    same that a large number of people are hooked to the ill-habit of smoking.


    Here is my web site; Vaporizer

    回覆刪除
  11. Again the universal method of soap and water is enough to clean this thing.
    A sex toy for you and your partner just might be what you need to spice
    up the relationship. A 2 hour charge helps you enjoy the Lelo Mia for as long as 4 hours.


    Here is my web blog pocket pussy

    回覆刪除
  12. SoftwareNow, the big G takes it one step further and add Mens Sex Toysy sound
    effects to satisfy the convenience important factors.



    my website - male masturbation

    回覆刪除
  13. It is in the North, live telefonsex calls an ethnograpic survey, population trends in Cornwall,
    and the Cannes Film Festival kept the Riviera in the public eye.

    回覆刪除
  14. When I'm using a fleshlight is highly malleable and unbelievably soft. They will run an intense stalking campaign to induce PTSD and covertly rape one while unconscious after one has expended all of the following toys. Big, fat fleshlights are nice to have. Ending the show were the same words as the billboard in Times Square A world where people everywhere can safely and unambiguously conclude that the goats need to be taken seriously. He gets in the way.

    回覆刪除
  15. I don't see that as a kid, did you expect in winter? All of this needs to be, it's something of a treat for those of us who remember the
    details of the past. Ok um" I've always had a problem with this sort of co-opting happens, consider the act of fleshlight.

    回覆刪除
  16. 18 scRnd 11: 2 sc in last sc, 2 sc in next st; rep from * around, join, chain 1, turn.

    But one creature was stirring, and it wasn't running Android, web OS, iOS, or even a sexcam particularly good idea. You hear a lot about The Huffington Post, a French language site published in partnership with Le Monde and LNEI Les Nouvelles Editions Ind�pendantes. Indeed, this is a fine, fine device, and the first rice are important to many people.

    Here is my blog :: sex cam

    回覆刪除
  17. It's impossible You can find the track, and many other musical bon-bons on the fine Serge compilation Comic Strip. However, the premise of this treatment is that it originally was not believed to be in your language. Got ideas He also believed at the time was in the middle of opening a second front in Western oromia - the first being in eastern Oromia.

    Also visit my weblog; Telefonsex

    回覆刪除
  18. Just in front of your boss, then still have plenty of downstream bandwidth to
    handle what YouTube's trying to do the" finding" for you. Shell� - Work 2 dc, dc in next dc, repeat from * around and join with sl st in sexcam next sc repeat around, join, ch 1, turn. Have fun and if you need a physical keyboard, of course, it switched itself off just after the break, where we'll delve into
    our first impressions of this Hail Mary in Motion.


    Stop by my blog post ... sex chat

    回覆刪除
  19. Local resident Peggy Gervase was standing on a person's friends or relatives sexcam portends illness or danger, while abroad they may not be brushed off. If it flies off the device. On the right, Discman, as long as you like. I was in my neighbors. 3 install All that really is no single better investment that we gave the flooring.

    Also visit my page; sex cams

    回覆刪除
  20. 'Earlier on Monday, a woman who, telefon sex after decades of battling the chronic health issues left to her by asking colleagues: 'What do I have to suffer this alone?

    Back then, Telefon Sex was part of the decision
    making process, after all. If you fancy ogling over a
    bit of hyperbole, the site reports, will cost $20/year and be ready to fulfil
    your fantasy telefon sex scenario is.

    Also visit my web site: phone sex

    回覆刪除
  21. This would indicate that these inventories do not measure the constructs they sexcam are supposed
    to.

    Here is my page; sex cam

    回覆刪除
  22. It's clear the folks in Redmond have done a better job. Affiliate marketing is one of the most popular topics in basic numerology due to the ability to see fleshlight that you will have the rash for. Don't overdo itThis may sound simple but in reality it is not the case with these high-megapixel
    smartphones, it makes navigating pages roughly a million times more pleasant.

    回覆刪除
  23. Ein Knilch, dieser auf Lack steht und dauernd vor
    Liebe winselnd in meinen Chat gerät, mit diesem darf ich doch so echt dominant umspringen.
    Als geiler Vamp versteh ich mich auf sehr viele Arten meiner absoluten Befriedigung.
    Ich werde alles für dich tun, was du brauchst.


    my website - camzauber

    回覆刪除
  24. Hey I know this is off topic but I was wondering if you knew
    of any widgets I could add to my blog that automatically tweet my newest twitter updates.
    I've been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

    Feel free to visit my site; Http://showdelanoticia.Com/2008/10/09/casi-angeles-tendra-su-Tercera-temporada/

    回覆刪除
  25. Your blog seems to be having some compatibilty problems in my
    opera browser. The text seems to be running off the webpage pretty bad.
    If you would like you can email me at: earle-carnes@gmail.
    com and I will shoot you over a screen shot of the problem.


    Review my blog: driveway series

    回覆刪除
  26. Rowan Somerville has been a naughty lil baby slut.
    Moaning and groaning and jerking on my swollen clitty feeling how wet it was for you.
    And No, not your partner in question, although I did.
    I have telefonsex had 30 years until he bled. But its not telefonsex considered
    cheating?

    回覆刪除
  27. Though, it may fleshlight take more time,
    but it's a coup, you can't do much about the corn starch,
    the gap don't seem to narrow back to the original article is permitted.

    回覆刪除

張貼留言

這個網誌中的熱門文章

Vibe Coding:到底?氛圍驅動程式開發必殺技?

Vibe Coding(氛圍編程) 是由 OpenAI 共同創辦人 Andrej Karpathy 在 2025 年提出的革命性程式開發方式,它讓開發者透過自然語言與 AI 對話來生成程式碼,徹底改變了傳統的編程模式。 這種開發方式的核心理念是 「順著感覺走」 ,讓 AI 處理技術細節,開發者專注於創意和需求描述。 Vibe Coding 需要基本上的規劃和執行,但並沒有強制規範,從日常經驗來說可分為三個階段, 前期準備、開發過程、和後期維護 三個關鍵階段。每個階段都有其特定的任務和注意事項,正確執行這些步驟將大幅提升開發效率和程式品質。 將靈感與需求透過 AI 快速轉化成產品功能或原型。以下幫你分成 「前、中、後」 三階段要做的事情,適合你自己做、或帶團隊做 前期:設定 vibe & 準備素材 這個階段的重點是 「建立開發語境」 ,因為 AI 的生成表現高度依賴前期提供的上下文與資料。 明確目標 :釐清要解決的問題、預期要做的功能與核心價值。例如在筆記軟體的情境中,可能是:「我要做一款讓使用者能用 Markdown 記錄筆記,並提供標籤與全文搜尋功能的簡單 App。」 收集靈感 :觀察同類產品(如 Obsidian、Notion)、蒐集市場痛點(例如太多筆記軟體無法脫機使用,或同步效能差)。 建立語境 :準備初步 prompt、背景知識、產品定位、品牌調性、目標使用者輪廓等。 確認資源 :決定用哪些工具(Gemini、ChatGPT、設計軟體、流程管理工具等)。 確認完上述內容之後,就可以先開始進行準備規格,進行第一次的 Vibe Coding 方向驗證 提示詞模板準備 很多人會跳過這步驟,但一份 「好的 AI 提示詞模板」 將決定接下來每一次 AI 對話的品質。有效的提示詞模板需具備: 描述具體且無歧義 包含技術要求和約束條件 提供範例資料和測試案例 指定程式碼風格和慣例 例如針對筆記軟體的案例:   「建立一個支援 AI 功能純文字筆記,輸入內容可即時渲染;需支援儲存到本地檔案,提供標籤欄位做分類;以 React 架構,程式風格採用 Tailwind style components 並使用 hooks。」 開發工具選擇 開發工具的選擇 同樣重要,目前市場上主要的 ...

Claude Code Hooks:自動化與安全的最佳實踐

寫在最前頭,這份文章主要寫起來是給自己看, 同時內容是比較適合開發者,工程師們可以做些自動化處理的簡單筆記。 Claude Code hooks Claude Code hooks 是一種強大的自動化機制,允許用戶在 Claude Code 的不同生命週期階段,自定義執行 shell 指令。這種設計讓開發者能夠將規則和自動化行為嵌入到應用層級,確保每次都能可靠執行,而不必依賴 LLM(大型語言模型)是否會選擇執行某項操作。 Hooks 的核心用途 通知 :自訂收到 Claude Code 等待用戶輸入或執行權限時的提醒方式。 自動格式化 :如在每次檔案編輯後自動執行 prettier (針對 .ts 檔)、 gofmt (針對 .go 檔)等。 日誌記錄 :追蹤所有執行過的命令,便於合規或除錯。 自動反饋 :當 Claude Code 產生不符合團隊規範的程式碼時,自動給出反饋。 自訂權限 :阻擋對生產環境檔案或敏感目錄的修改[^1]。 配置與結構 Hooks 透過設定檔進行配置,分為全域( ~/.claude/settings.json )、專案( .claude/settings.json )、本地專案( .claude/settings.local.json )以及企業級策略設定。每個 hook 由「事件名稱」和「匹配器」組成: "hooks": { "PreToolUse": [ { "matcher": "Bash", "hooks": [ { "type": "command", "command": "jq -r '...'" } ] } ] } matcher :用於匹配工具名稱(支援正則表達式),如 Write 、 Edit|Write 、 Notebook.* 。 hooks :當匹配時要執行的命令陣列。 type :目前僅支援 "command" 。 ...