3ae2b061d507718aa8dbdcef4f830d3c6c8bb8f6.svn-base 806 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>z-index tests #4</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <script type="text/javascript" src="../../test.js"></script>
  7. <style type="text/css">
  8. div.lev1 {
  9. width: 250px;
  10. height: 70px;
  11. position: relative;
  12. border: 2px solid #669966;
  13. background-color: #ccffcc;
  14. padding-left: 5px;
  15. }
  16. div.background {
  17. position: absolute;
  18. top: 0;
  19. bottom: 0;
  20. width: 250px;
  21. background-color: #ffdddd;
  22. z-index: -1;
  23. }
  24. </style></head>
  25. <body>
  26. <div class="lev1">
  27. <span>LEVEL #1</span>
  28. </div>
  29. <div class="background"></div>
  30. <div class="lev1">
  31. <span>LEVEL #1</span>
  32. </div>
  33. </body>
  34. </html>