mirror of
https://github.com/servo/servo.git
synced 2025-06-16 20:34:30 +00:00
26 lines
304 B
HTML
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>
|
|
|