Advertisement
kyujouz

gradient 2

Apr 6th, 2022
2,222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <style>
  2. stroke {
  3. background: -webkit-linear-gradient(#FF3131, #FFFFFF);
  4. -webkit-background-clip: text;
  5. -webkit-text-stroke: 1px transparent;
  6. color: white;
  7. }
  8. #stroke {
  9. background: -webkit-linear-gradient(#FF3131, #FFD6D6);
  10. -webkit-background-clip: text;
  11. -webkit-text-stroke: 3px transparent;
  12. color: white;
  13. }
  14. </style>
  15. <body>
  16. <div id="stroke">
  17. text here
  18. </div>
  19. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement