blob: a3028fb84e6eb9427e06975ef53a761ecfab372c [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Test: Page padding: percentages</title>
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-properties"/>
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-box-page-rule"/>
<meta name="flags" content="paged" />
<meta name="assert" content="A padding declaration within the @page context applies to the page box."/>
<style type="text/css"><![CDATA[
@page {
margin: 0;
padding: 50% 50% 0 0;
}
html, body, div { width: 100%; height: 100%; margin: 0; padding: 0; }
div {background: #46BBEE;}
]]></style>
</head>
<body>
<div>When printed, this blue box must just cover the lower left quadrant of a box with a black border.</div>
</body>
</html>