Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. .overlay {
  2. position: relative;
  3. z-index: 0;
  4. .overlay:before {
  5. position: absolute;
  6. content: " ";
  7. background-image: url('//здесь путь к вашей сетке'),
  8. //если нужно - сделайте background-repeat: repeat-x
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. height: 100%;
  13. display: block;
  14. z-index: -1;
  15. }
  16.  
  17. <div class="overlay image" style="background: url("//здесь путь к вашей картинке") no-repeat center center;">
  18. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement