Jak pozbyć się fioletowej kreski znajdującej się tuż pod tekstem - Strona Internetowa?
Zastosowałem text-decoration: none;, ale to nic nie pomogło.
<div id="header">
<div class="text">
<a href="index.php">Strona <span>Internetowa</span></a>
</div>
</div>
#header
{
position: relative;
left: 15px;
margin-bottom: 30px;
margin-left: 105px;
margin-top: 30px;
width: 600px;
background-color: #000000;
}
#header .text
{
background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 42px;
text-decoration: none;
}
#header .text span
{
background: -webkit-linear-gradient(#333, #eee);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 42px;
text-decoration: none;
}