Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-position/position-fixed-overflow-print.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>position: fixed doesn't overflow the margin area</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="match" href="position-fixed-overflow-print-ref.html">
<style>
body { margin: 0 }
#outer, #inner {
background-color: purple;
width: 100vw;
height: 100vh;
}
#inner {
position: fixed;
background-color: blue;
top: 0;
left: 50%;
}
</style>
<div id="outer">
<div id="inner"></div>
</div>