mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
21 lines
324 B
HTML
21 lines
324 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
aside {
|
|
display: block;
|
|
position: relative;
|
|
left: 12px;
|
|
z-index: 3; /* force creation of stacking context */
|
|
background: red;
|
|
}
|
|
div {
|
|
float: left;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<aside><div></div></aside>
|
|
|