Advertisement
teenagegoths

text shadow

Apr 16th, 2021 (edited)
2,244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.44 KB | None | 0 0
  1. /* raw shadow: */
  2. text-shadow: -1px 0  {color:text border}, 0 1px  {color:text border}, 1px 0  {color:text border}, 0 -1px  {color:text border};
  3.  
  4. /* with extra stuff: */
  5. text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 0 0 3px black;
  6. text-decoration:none;
  7. font-weight:bold;
  8.  
  9. /* different tag...lol */
  10. filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(0 -1px 0 black) drop-shadow(1px 0 black);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement