tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

first-page-selectors-002.xht (996B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
      2                       "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      3 <html xmlns="http://www.w3.org/1999/xhtml" dir="rtl">
      4  <head>
      5   <title>CSS Test: Page Selectors - First Page in RTL</title>
      6   <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/>
      7   <link rel="help" href="http://www.w3.org/TR/CSS21/page.html#page-selectors"/>
      8   <meta name="flags" content="paged"/>
      9   <meta name="assert" content="The first page of a right-to-left document
     10     is a :left page."/>
     11   <style type="text/css">
     12     @page:first {
     13       margin-top: 50%;
     14     }
     15     @page:left {
     16       margin-left: 50%;
     17     }
     18     @page:right {
     19       margin: 0;
     20     }
     21     html {
     22       margin: 0; padding: 0.2em;
     23       border: solid blue;
     24       border-width: thick thin thin thick;
     25     }
     26   </style>
     27  </head>
     28  <body>
     29    <p class="import">When printed the top left corner of this box must be in
     30      the exact center of this page.</p>
     31  </body>
     32 </html>