我有背景色透明表示作爲白色背景色透明顯示爲白色
中間一列是DIV「包裝」
其中有風格:background: url('../images/layout/bg_wrapper.gif') 0 0 repeat-y;
如果我去控制檯和類型:
x=document.getElementById('wrapper');
window.getComputedStyle(x, null).getPropertyValue('background-color');
我得到:
"rgba(0, 0, 0, 0)"
然而就說明它的背景爲白色,而不是車身顏色(黃綠色)。
這是爲什麼?
Thx!