Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <div class='container'>
  2. <div class='background'><img src='/img/url/here.jpg' /></div>
  3. <div class='foreground'>Overlay copy</div>
  4. </div>
  5.  
  6. .container {
  7. position: relative; /* this is required to keep all absolutely positioned child elements contained */
  8. overflow: hidden;
  9. height: 100px;
  10. width: 1200px;
  11. }
  12.  
  13. .background {
  14. position: absolute;
  15. left: -200px;
  16. top: 0;
  17. height: 100px;
  18. width: 1200px;
  19. z-index: 1;
  20. }
  21.  
  22. .foreground {
  23. position: absolute;
  24. left: 50px;
  25. top: 50px;
  26. height: 50px;
  27. width: 300px;
  28. z-index: 2;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement