Guest User

Untitled

a guest
May 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <div class="block" style="background-image: pic.jpg;">
  2. <h1>Текст</h1>
  3. </div>
  4.  
  5. div {
  6. width: 200px;
  7. height: 200px;
  8. display: block;
  9. position: relative;
  10. }
  11.  
  12. div::after {
  13. content: "";
  14. background: url(image.jpg);
  15. opacity: 0.5;
  16. top: 0;
  17. left: 0;
  18. bottom: 0;
  19. right: 0;
  20. position: absolute;
  21. z-index: -1;
  22. }
Add Comment
Please, Sign In to add comment