Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-page/margin-boxes/content-010-print.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<meta name="assert" content="Generic counter test">
<link rel="match" href="content-010-print-ref.html">
<style>
html {
counter-reset: foo 10;
}
@page {
margin: 4em;
counter-increment: foo;
@bottom-center {
text-align: left;
vertical-align: top;
content: counter(foo);
}
}
body {
margin: 0;
}
</style>
Page
<div style="page:something;">
Another page
</div>
<div>
Yet another page
</div>
<div style="break-before:page;">
Last page
</div>