24 lines
362 B
HTML
24 lines
362 B
HTML
<!doctype html>
|
|
<title>Test reference</title>
|
|
<style>
|
|
:root {
|
|
print-color-adjust: exact;
|
|
}
|
|
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>
|