servo/tests/ref/layerization_z_order_a.html
2015-08-19 16:30:44 -07:00

26 lines
304 B
HTML

<style>
body, html {
margin: 0;
}
#a, #b {
position: absolute;
width: 100px;
height: 100px;
}
#a {
z-index: 2;
background: red;
}
#b {
top: 50px;
left: 50px;
background: green;
}
#c {
position: fixed;
}
</style>
<div id=a></div>
<div id=b></div>
<div id=c></div>