mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
22 lines
259 B
HTML
22 lines
259 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;
|
|
}
|
|
</style>
|
|
<div id=a></div>
|
|
<div id=b></div>
|
|
|