Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to make text transparent with stroke in css

h1 {
   -webkit-text-stroke: 1px black;
   color: white;
   text-shadow:
       3px 3px 0 #000,
     -1px -1px 0 #000,  
      1px -1px 0 #000,
      -1px 1px 0 #000,
       1px 1px 0 #000;
}
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #text #transparent #stroke #css
ADD COMMENT
Topic
Name
3+8 =