1
0
Fork 0
firefox/testing/web-platform/tests/css/css-page/page-name-fixed-pos-001-print-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
325 B
HTML

<!DOCTYPE html>
<html>
<style>
div {
width: 1in;
height: 1in;
border: 1px solid black;
}
.fixed {
position: fixed;
left: 0.5in;
top: 0.5in;
border-color: blue;
}
</style>
<body>
<div class="fixed">fixed</div>
<div style="break-after: page">a</div>
<div>b</div>
</body>
</html>