I added the text gradient using CSS but how can I remove the top border of the gradient.
<div class="col-md-4">
<ul class="main-menu-links main-menu">
<li><a (click)="navigateToHome()">+ HOME</a></li>
</ul>
</div>
i have put in <a> tag
background: linear-gradient(to right, #ff4900 0%, #ec00c4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 30px;`
when I remove
background: linear-gradient(to right, #ff4900 0%, #ec00c4 100%);
-webkit-text-fill-color: transparent;
then it will remove gradient as well border to
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…