2014-02-08 63 views

回答

5

不要使用第n個子代碼,這將無助於更改活動頁面的背景圖像。代替 使用以下代碼:

#uiList { 
    margin: 0; 
    padding: 0; 
    list-style-type: none; 
    background:url(../m1.png); 
} 

#uiList a{ 
    display:block; 
    height:195px; 
    width:78px; 
} 
.active{ 
    background:url(../m1_selected.png); 
} 

#uiList1 { 
    margin: 0; 
    padding: 0; 
    list-style-type: none; 
    background:url(../m2.png); 
} 

#uiList1 a{ 
    display:block; 
    height:195px; 
    width:78px; 
} 
.active1{ 
    background:url(../m2_selected.png); 
} 

Html code: 
<ul id="uiList"> 
<li><a href="#"></a></li> 
</ul> 
<ul id="uiList1"> 
<li><a href="#"></a></li> 
</ul> 
+0

謝謝。這將有所幫助。 – Deepika