我有一個導航網格,我想要使用精靈創建翻轉。感謝網站上的其他提示,我設法開始了。css sprite導航佈局問題
<ul id="navigation">
<li class="button_1"><a href="#" title="Go to the this page">Button text</a></li>
<li class="button_2"><a href="#" title="Go to the this page">Button text</a></li>
<li class="button_3"><a href="#" title="Go to the this page">Button text</a></li>
<li class="button_4"><a href="#" title="Go to the this page">Button text</a></li>
<li class="button_5"><a href="#" title="Go to the this page">Button text</a></li>
</ul>
#navigation{
display: block;
width: 907px;
height: 296px;
background: url(http://i.imgur.com/WbDp9lf.jpg) left top no-repeat;
}
#navigation li{
display: block;
float: left;
}
#navigation li a{
display: block;
height:296px;
text-indent:-9999px;
}
#navigation li a:hover,
#navigation li a.on{
background-image: url(http://i.imgur.com/WbDp9lf.jpg);
}
#navigation li.button_1 a {width:175px; background-position:0px 0px;}
#navigation li.button_1 a:hover {background-position:0px -296px;}
/*
的問題是 - 在導航圖標兩行。我怎樣才能控制只有一個盒子正在改變。目前只有改變垂直組的作品。
checking my jsfiddle will show it better i think.
的感謝!
你不有2行,你只有連續5個LIs –
我認爲你必須閱讀更多關於精靈。 –