我'試圖生成這樣的圖形: IE7 CSS的z-index
,但我得到:
CSS:
#green { height: 500px; width: 500px; background-color: green; position:absolute;z-index:13; }
#red { height: 300px; width: 300px; background-color: red; position:absolute; z-index:17; }
#blue { height: 400px; width: 400px; background-color: blue; position:absolute; z-index:15;}
HTML:
<div id="blue"></div>
<div id="green">
<div id="red"></div>
</div>
主要的問題是,我需要像上面指定的那樣確定html代碼。請給我建議我需要實現此功能的CSS代碼(必須與IE7 +兼容)。或者,也許JS會爲此提供幫助?我會很樂意提供任何建議。
HTML絕對必須這樣嗎?這將通過編輯HTML很容易解決。 – Kyle