Advertisement
loveberry

gradient mask

May 20th, 2023 (edited)
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <style>
  2. .gradmask {
  3. background: linear-gradient(pink 50%, hotpink);
  4. -webkit-background-clip: text;
  5. -webkit-text-fill-color: transparent;
  6. font-size:2em;
  7. filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black);
  8. }
  9. </style>
  10.  
  11. <div class="gradmask"><strong>gradient mask</strong></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement