Home
Testo con background clip al testo!


Codice
<style>
.text-clip {
font-size: 48px;
font-weight: bold;
background: linear-gradient(45deg, #ff6f61, #6a82fb);
-webkit-background-clip: text; /* supporto browser WebKit */
background-clip: text;
color: transparent; /* rende il testo trasparente per mostrare il background */
}
</style>
</head>
<body>
<a href="#" onClick="window.history.go(-1);">Home</a>
<div class="text-clip">
Testo con background clip al testo!
</div>