Advertisement
amit_sarker

How to set images as text background using css

Mar 20th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.22 KB | None | 0 0
  1. .image-text{
  2.     background: url(../img/text-image.jpg) no-repeat;
  3.     -webkit-background-clip: text;
  4.     -webkit-text-fill-color: transparent;
  5.     background-position: center center;
  6.     font-weight: 700;
  7.     font-size: 60px;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement