Skip to content

Instantly share code, notes, and snippets.

@mikeott
Last active April 21, 2022 08:22
Show Gist options
  • Save mikeott/68b5f3c26fb780196ba5c9bc8ce6a932 to your computer and use it in GitHub Desktop.
Save mikeott/68b5f3c26fb780196ba5c9bc8ce6a932 to your computer and use it in GitHub Desktop.
Text gradient fill
<h1>
<span>This is a test</span>
</h1>
<style>
h1 span {
-webkit-text-fill-color: transparent; /* Chrome Only */
background: linear-gradient(-135deg,#3ee39e,#3189bb);
-webkit-background-clip: text;
color: #3189bb;
font-size: 5em;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment