mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
17 lines
594 B
HTML
17 lines
594 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Viewport units in print account for margins</title>
|
|
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1414600">
|
|
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5437">
|
|
<link rel="help" href="https://drafts.csswg.org/css-values-4/#viewport-relative-lengths">
|
|
<link rel="match" href="viewport-units-001-print-ref.html">
|
|
<style>
|
|
body { margin: 0 }
|
|
div {
|
|
box-sizing: border-box;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
<div>I should not overflow to the next page.</div>
|