tor-browser

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

logical-values-float-clear-4.html (1288B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8" />
      3 <link rel="help" href="https://drafts.csswg.org/css-logical/#float-clear">
      4 <link rel="match" href="reference/logical-values-float-clear-4-ref.html">
      5 <style>
      6 html { writing-mode: vertical-rl; }
      7 body > div { height: 15em; width: 10em; margin: 1em; padding: 2px; border: 1px solid silver; }
      8 div > div { margin: .5em; padding: .5em; background: yellow; }
      9 .a { clear: inline-start; }
     10 .b { clear: inline-end; }
     11 .is { float: inline-start; width: 4em; }
     12 .ie { float: inline-end; width: 2em; }
     13 .ltr { direction: ltr; }
     14 .rtl { direction: rtl; }
     15 </style>
     16 
     17 <body>
     18 <div class="ltr">
     19 <div class="is">Start</div>
     20 <div class="ie">End</div>
     21 <p class="a">a b c d e f g h i j k l m n o p q r s t u v w x y z LTR clear:inline-start</p>
     22 </div>
     23 
     24 <div class="ltr">
     25 <div class="is">Start</div>
     26 <div class="ie">End</div>
     27 <p class="b">a b c d e f g h i j k l m n o p q r s t u v w x y z LTR clear:inline-end</p>
     28 </div>
     29 
     30 <div class="rtl">
     31 <div class="is">Start</div>
     32 <div class="ie">End</div>
     33 <p class="a">a b c d e f g h i j k l m n o p q r s t u v w x y z RTL clear:inline-start</p>
     34 </div>
     35 
     36 <div class="rtl">
     37 <div class="is">Start</div>
     38 <div class="ie">End</div>
     39 <p class="b">a b c d e f g h i j k l m n o p q r s t u v w x y z RTL clear:inline-end</p>
     40 </div>