tor-browser

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

shape-outside-margin-box-002.html (1580B)


      1 <!DOCTYPE html>
      2 <!-- Any copyright is dedicated to the Public Domain.
      3   - http://creativecommons.org/publicdomain/zero/1.0/ -->
      4 
      5 <html>
      6  <meta charset="utf-8">
      7  <title>CSS Shape Test: float right, margin-box</title>
      8  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      9  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
     10  <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#shapes-from-box-values">
     11  <link rel="match" href="reference/shape-outside-margin-box-002-ref.html">
     12  <meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the margin-box value.">
     13  <style>
     14  .container {
     15    direction: rtl;
     16    width: 200px;
     17    line-height: 0;
     18  }
     19 
     20  .shape {
     21    float: right;
     22    shape-outside: margin-box;
     23    box-sizing: content-box;
     24    height: 25px;
     25    width: 25px;
     26    padding: 25px;
     27    border: 25px solid lightgreen;
     28    margin: 25px;
     29    background-color: orange;
     30  }
     31 
     32  .box {
     33    display: inline-block;
     34    width: 25px;
     35    height: 25px;
     36    background-color: blue;
     37  }
     38  </style>
     39 
     40  <main class="container">
     41    <div class="shape"></div>
     42    <div class="shape"></div>
     43    <div class="box"></div>
     44    <div class="box"></div>
     45    <div class="box"></div>
     46    <div class="box"></div>
     47    <div class="box"></div>
     48    <div class="box"></div>
     49    <div class="box"></div>
     50    <div class="box"></div>
     51    <div class="box"></div>
     52    <div class="box"></div>
     53    <div class="box"></div>
     54    <div class="box"></div>
     55    <div class="box"></div>
     56    <div class="box"></div>
     57  </main>
     58 </html>