-1
當我將鼠標懸停在我的橫幅上的圖像上時,它會在圖像後面顯示一個紅色框,我試圖通過將第一個鏈接製作爲「徽標」類並製作特定鏈接信息,但似乎並沒有工作。我認爲這是因爲鏈接本身就是標識,因此不會鏈接鏈接。什麼是解決這個問題最有效的方法?超鏈接圖像使背景中的紅色框
HTML5
<header class="main-header">
<a class="logo" href="../index.html">
<img src="../Images/logo.png" alt="Logo"></a>
<nav><ul>
<li><a href="../index.html">HOME</a></li>
<li><a href="../news/news.html">NEWS</a></li>
<li class="active"><a href="location.html">LOCATION</a></li>
</ul></nav>
CSS3
/* Define Hyperlink Info */
a {
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
}
a:link, a:visited {
color: #FFFFFF;
text-decoration: none;
}
a:hover, a:active {
background-color: #C71F0E;
color: #FFFFFF;
text-decoration: none;
}
/* Defines the header banner */
.main-header {
background-image: url('../Images/flag-header.jpg');
background-repeat: no-repeat;
background-size: 1510px 180px;
height: 200px;
margin: auto;
width: 70%;
}
.main-header img{
background: none;
width: 200px;
height: 140px;
margin-left: 3%;
}
/* Defines Image Link */
.logo {
background-color: transparent;
}
.logo a {
background-color: transparent;
}
.logo a:hover, a:active {
background-color: transparent;
}
.logo a:link, a:visted {
background-color: transparent;
}
是的,那正是我想要做的,ug,它只是那些日子中的一個--_-。謝謝 – SecretWalrus