Advertisement
salmancreation

Text Gradients and You

Dec 31st, 2019
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.26 KB | None | 0 0
  1. Syntax
  2. The most important part of your CSS gradient text is the actual CSS itself. Check out the basic form of the CSS
  3.  
  4. h1 {
  5.   font-size: 72px;
  6.   background: -webkit-linear-gradient(#eee, #333);
  7.   -webkit-background-clip: text;
  8.   -webkit-text-fill-color: transparent;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement