我用我的網頁上下面的代碼:應用CSS嵌套的div
<div id="itemstable" class="item_type1">
...other divs here...
</div>
而在我的CSS文件,我有這樣的代碼:
.item_type1 div {
background-image: url(images/type1.giff);
}
的問題是有很多的不同項目類型,所以我需要在我的CSS文件中有很多行。我想知道如何將background-image: url(images/type1.giff);
樣式應用於嵌套div,而無需將其分配給每個樣式。例如。我想更改「itemstable」div的代碼,以便它對嵌套的div應用css規則。
這可能嗎?
編輯:我在尋找這樣的事情:
<div id="itemstable" style="SET BACKGROUND IMG FOR NESTED DIVS HERE">
...other divs here...
</div>
是.gif * f *一個錯字? – deceze 2009-08-02 04:44:18
啊,是的......沒有注意到。這是正確的在我的CSS文件雖然>。< – Hintswen 2009-08-02 06:43:47