mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
24 lines
290 B
HTML
24 lines
290 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body, html {
|
|
margin: 0;
|
|
}
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
#a {
|
|
position: relative;
|
|
z-index: 2;
|
|
background: green;
|
|
}
|
|
#b {
|
|
position: absolute;
|
|
background: red;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|
|
<div id=a></div>
|
|
<div id=b></div>
|
|
|