我在玩3張圖片。這讓我頭暈目眩。我想要的是當選項卡處於活動狀態時,它將更改背景圖像。當活動會改變背景
我現在有這樣的代碼在我的html:
div id="promo-nav-wrapper">
<ul>
<li id="active">
<a href="#" class="promo-call"></a>
</li>
<li>
<a href="#" class="promo-text"></a>
</li>
</ul>
</div>
我的CSS
#promo-nav-wrapper {
background: url("http://imageshack.us/photo/my-images/580/menubackground.png/");
background-repeat: repeat-x;
width: 100%;
height: 82px;
}
#promo-nav-wrapper ul {
text-align: center;
}
#promo-nav-wrapper ul li {
display: inline-block;
margin-top: 20px;
}
#promo-nav-wrapper ul li a {
height:53px;
width:41px;
display:block;
text-decoration: none;
background-repeat: no-repeat;
text-shadow: none;
}
a.promo-call{
background-image:url("http://imageshack.us/photo/my-images/861/callicon2.png/");
z-index: 3;
margin-right: 10px;
}
a.promo-text {
background-image:url("http://imageshack.us/photo/my-images/807/texticon2.png/");
margin-left: 10px;
margin-right: 10px;
}
/*this don't work*/
#promo-nav-wrapper li#active a {
background-image: url('http://imageshack.us/photo/my-images/694/selectediconbackground.png/') no-repeat!important;
height: 76px;
width: 64px;
/*background: blue;*/
}
我的問題是,當一個麗是積極的,我不能剪掉的圖像,它不顯示背景。 T_T。這樣說
#active a{ background-image: url('selected_icon_background.png');
....
}
那'#active一個{背景圖像:網址( 'selected_icon_background.png');'是不是在你的實際代碼,這是隻是一個例子,對吧?只是想知道,因爲所有其他的在文件名前面都有'../ images /'。 – Rick 2012-03-13 06:49:37
它確實有用,看看這個小提琴http://jsfiddle.net/fBwEJ/。我用顏色代替了圖像。 – 2012-03-13 06:50:14
你可以在http://jsfiddle.net/推送你的代碼,以便更好地理解 – sandeep 2012-03-13 06:58:12