2013-04-15 15:08:54 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>z-index tests #4</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<script type="text/javascript" src="../../test.js"></script>
|
|
|
|
<style type="text/css">
|
|
|
|
div.lev1 {
|
|
|
|
width: 250px;
|
|
|
|
height: 70px;
|
|
|
|
position: relative;
|
2013-08-15 18:31:32 +04:00
|
|
|
border: 2px solid #669966;
|
2013-04-15 15:08:54 +04:00
|
|
|
background-color: #ccffcc;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
div.background {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 250px;
|
|
|
|
background-color: #ffdddd;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
2017-08-09 06:52:42 +03:00
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: Arial;
|
|
|
|
}
|
|
|
|
</style></head>
|
2013-04-15 15:08:54 +04:00
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="lev1">
|
|
|
|
<span>LEVEL #1</span>
|
|
|
|
</div>
|
|
|
|
<div class="background"></div>
|
|
|
|
<div class="lev1">
|
|
|
|
<span>LEVEL #1</span>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|