tor-browser

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

shape-outside-margin-box-001.html (1557B)


      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 left, 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-001-ref.html">
     12  <meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the margin-box value.">
     13  <style>
     14  .container {
     15    width: 200px;
     16    line-height: 0;
     17  }
     18 
     19  .shape {
     20    float: left;
     21    shape-outside: margin-box;
     22    box-sizing: content-box;
     23    height: 25px;
     24    width: 25px;
     25    padding: 25px;
     26    border: 25px solid lightgreen;
     27    margin: 25px;
     28    background-color: orange;
     29  }
     30 
     31  .box {
     32    display: inline-block;
     33    width: 25px;
     34    height: 25px;
     35    background-color: blue;
     36  }
     37  </style>
     38 
     39  <main class="container">
     40    <div class="shape"></div>
     41    <div class="shape"></div>
     42    <div class="box"></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  </main>
     57 </html>