DEMO
Gradient Text
HTML<h1>Gradient Text</h1>
h1 {
font-size: 72px;
background: -webkit-linear-gradient(#eee, #F00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
<h1>Gradient Text</h1>
h1 {
font-size: 72px;
background: -webkit-linear-gradient(#eee, #F00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
Comments
Post a Comment