我有一個列表,使用導航中的圖片沒有任何文字。看起來他們已經走到了背景之中,我很難解決它。我想成爲點擊圖像,並讓他們把我帶到另一個頁面。我對此很新。我使用CSS來做到這一點。文字縮進移動元素(錨標記)離開頁面
<div id="navigation">
<ol>
<li class="news"><a href="news.html">news</a></li>
<li class="review"><a href="review.html">Review</a></li>
<li class="contact"><a href="contact.html">Contact</a></li>
<li class="photos"><a href="photos.html">Photos</a></li>
</ol>
</div>
,這裏是我的CSS:
#navigation li {
float: left;
height: 30px;
margin: 0 0px 0 0;
text-indent: -9999px;}
#navigation li.news {
background: url("news.png");
display:block;
width: 308px;
height: 80px;
list-style:none;}
#navigation li.review {
background: url("review.png");
width: 308px;
height: 80px;
list-style:none;}
#navigation li.contact
{
background: url("contact.png");
width: 308px;
height: 80px;
list-style:none;}
#navigation li.photos
{
background: url("photo.png");
width: 308px;
height: 80px;
list-style:none;}
任何幫助,將不勝感激。
這工作了,非常感謝。剛剛意識到我不需要縮進或列表中的文字。我正在用一種荒謬的方式擺脫文字。 – user2977102
@ user2977102酷!不要忘記接受答案! – m59
謝謝我其實不知道。 – user2977102