Advertisement
itskrystalized

background-clip: text >> css

Jun 13th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.41 KB | None | 0 0
  1. <style type="text/css">
  2. @import "compass/css3";
  3.  
  4. h5 {
  5.   color: white;
  6.   -webkit-text-fill-color: transparent;
  7.   background: -webkit-linear-gradient(transparent, transparent),
  8.              url(HÁTTÉRKÉP URL CÍME) repeat;
  9.   background: -o-linear-gradient(transparent, transparent);
  10.   -webkit-background-clip: text;
  11. }
  12.  
  13. .headline {
  14.   font: bold italic 50px georgia;
  15. }
  16.  
  17. svg {
  18.   width: 100%;
  19. }</style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement