4f6fad8503ed965a5bbcaa3930c0ee00a55ca394.svn-base 746 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>z-index tests #6</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 {
  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.z0 {
  17. z-index: 0;
  18. top:105px;
  19. left:20px;
  20. background-color: #ffdddd;
  21. }
  22. div.z1 {
  23. z-index: 1;
  24. }
  25. </style></head>
  26. <body>
  27. <div class="z0"><span>z-index:0</span></div>
  28. <div>default z-index</div>
  29. <div class="z1">z-index:1</div>
  30. </body>
  31. </html>