Guest User

Untitled

a guest
Jan 20th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <div>
  2. //my blog post
  3. </div>
  4.  
  5. <div style="background-image:url("image.jpg"); opacity:0.5;">
  6. <div style="opacity:1;">
  7. //my blog post
  8. </div>
  9. </div>
  10.  
  11. <div class="container">
  12. <div class="content">//my blog post</div>
  13. </div>​
  14.  
  15. .container { position: relative; }
  16.  
  17. .container:before {
  18. content: "";
  19. position: absolute;
  20. top: 0;
  21. bottom: 0;
  22. left: 0;
  23. right: 0;
  24. z-index: 1;
  25. background-image: url('image.jpg');
  26. opacity: 0.5;
  27. }
  28.  
  29. .content {
  30. position: relative;
  31. z-index: 2;
  32. }​
Add Comment
Please, Sign In to add comment