1
0
Fork 0
firefox/testing/web-platform/tests/css/css-page/pseudo-first-margin-001-print.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

22 lines
446 B
HTML

<!DOCTYPE html>
<html>
<link rel="match" href="pseudo-first-margin-print-ref.html"/>
<link rel="help" href="https://www.w3.org/TR/css-page-3/#first-pseudo"/>
<style>
@page :first {
margin: 1cm;
}
@page {
margin: 0;
}
div {
width: 1cm;
height: 1cm;
border: 2px solid red;
}
</style>
<body>
<div style="page: a; border-color: lightblue"></div>
<div style="page: b; border-color: pink"></div>
</body>
</html>