0
如何防止父DIV上的不透明度級別成爲子DIV的限制?CSS - DIV內DIV的不透明度值的繼承
<div style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; opacity: .50; z-index: 1000; background-color:red;">
<div style="opacity:1; margin-top:25%; color:white;">
<apex:pageMessages />
</div>
</div>
現在孩子的DIV只會達到最大值的50%。
好工作。爲了解釋*爲什麼這是,我將指出有一個最大的原因是*不透明度乘以後代的倍數:*如果父項的不透明度爲0.5,並且子項的不透明度爲1仍然導致0.5×1 = 0.5。 – Dre