1
在訪問導航圖像時,我無法將虛線邊框從我的導航圖像中刪除。我以爲下面的風格應該做到這一點,但它似乎並沒有工作。如何從nav中的已訪問圖像中刪除邊框?
有什麼想法?
HTML
<li class="navprint">
<a href="printcategory.html"><img src="Images/navprint.png" alt="print button" title="print button">
</a>
</li>
CSS
.navprint {
width: 130px;
height: 30px;
padding: 0px 0px 0px 0px;
}
.navprint:visited {
border: none;
text-decoration: none;
list-style-image: none;
outline: none;
}
.navprint:hover {
background-color: rgb(209, 244, 239);
}
.navprint:active, {
background-color: rgb(209, 244, 239);
}
我沒有看到應用於開始的邊界? – BoltClock