tor-browser

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

dir-style-03-ref.html (542B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="UTF-8">
      5    <title>dir() selector reference</title>
      6    <link rel="author" title="Astley Chen" href="mailto:aschen@mozilla.com">
      7    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      8    <style>
      9      div { text-align: left; }
     10      .ltr { color: blue; direction: ltr }
     11      .rtl { color: lime; direction: rtl }
     12    </style>
     13  </head>
     14  <body>
     15    <div class="rtl">This element is rtl.</div>
     16    <div class="ltr">This element has default direction.</div>
     17  </body>
     18 </html>