我試圖讓不同的圖像,以示對一個錨標記的不同狀態,但我不能得到它的工作。關於我在這裏失蹤的任何想法?在錨標記使用不同的圖像(鏈接,訪問等)
這裏的圖像=>不會讓我張貼的圖像,但它是480x30像素
這裏的CSS;
a.image {
background-repeat:no-repeat;
color:white;
display:inline-block;
width:160px;
height:30px;
margin-left:-12px;
margin-top:16px;
padding-top:6px;
text-align:center;
font-size:14px;
font-weight:bold;
cursor:pointer;
text-decoration:none;
}
a.image:link {
background-image:url('images/buttons.png');
background-position:0px 320px;
}
a.image:visited {
background-image:url('images/buttons.png');
background-position:0px 0px;
}
a.image:active {
background-image:url('images/buttons.png');
background-position:0px 160px;
}
這裏是HTML;
<a href='ifp.asp?width=1512&ProjectGroupID=&ProductID=536&model=Addison 536&plan=Lower Level Plan' class='image'>Lower Level Plan</a>
我目前只獲得白色文本中的「低層計劃」。謝謝!
你所說的「低級別」是什麼意思? – 2012-08-15 19:39:13
'background-position'屬性被定義爲'Xpos Ypos'。你確定你不應該扭轉你的價值觀的順序嗎? – Quantastical 2012-08-15 19:40:49