我的h1標籤鏈接出現一個藍色下劃線,我沒有添加。我已經設置text-decoration
到none
,但它仍然顯示一個藍線時懸停。這裏是我的代碼。我的h1標籤鏈接出現下劃線時懸停,我沒有添加
CSS
h1{
font-family:'Oxygen';
color:#000;
font-size:100px;
text-align:center;
margin-top:80px;
font-weight:50;
border:5px black solid;
text-decoration:none;
}
h1:hover{
color:#fff;
border:5px solid white;
text-decoration:none;
}
#h1{
height:100px;
width:600px;
margin:auto;
}
HTML
<div data-speed="1.2" data-type="background" id="search-background" class="clearfix" style="background-attachment:fixed;">
<div id="h1">
<a href="#about"><h1>Joomgame</h1></a>
</div>
<p>Front-End Devoloper</p>
</div>
這是因爲它是''標籤 –
裏面我覺得你的錨標記的CSS將覆蓋你的h1標籤的CSS。 – sms