Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<head>
<title>CSS Test: Unqualified Page Contexts (first, left)</title>
<link rel="author" title="Melinda Grant" href="mailto:melinda.grant@hp.com" />
<meta name="flags" content="paged" />
<meta name="assert" content="A margin declaration within a page context which is not qualified by a pseudo-class (or, for css3, a named page identifier) sets the margins for every page of the document which doesn't match a page context with a :first, :right, or :left pseudoclass (or, for css3, a named page identifier)." />
<style type="text/css">
@page {
margin: 7%;
}
@page :first {
margin-left: 50%;
}
@page :left {
margin-left: 50%;
}
p {
page-break-after: always;
}
</style>
</head>
<body>
<p>
This test produces four pages on paged media.
<br />
<br />
The text on this page is entirely on the right half of the page.
</p>
<p>
This text on page two is also entirely on the right half of the page.
</p>
<p>
This text on page three begins near the left edge of the page.
</p>
<p>
This text on page four is entirely on the right half of the page.
</p>
</body>
</html>