mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
21 lines
317 B
HTML
21 lines
317 B
HTML
<!doctype html>
|
|
<title>Test reference</title>
|
|
<style>
|
|
body { margin: 0 }
|
|
|
|
#outer, #inner {
|
|
background-color: purple;
|
|
width: 50%;
|
|
height: 100vh;
|
|
}
|
|
|
|
#inner {
|
|
position: absolute;
|
|
background-color: blue;
|
|
top: 0;
|
|
left: 50%;
|
|
}
|
|
</style>
|
|
<div id="outer">
|
|
<div id="inner"></div>
|
|
</div>
|