tor-browser

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

float-nowrap-3-ref.html (745B)


      1 <!doctype html>
      2 <title>CSS Test: Floats in nowrap context</title>
      3 <link rel="help" href="https://drafts.csswg.org/css2/visuren.html#float-position">
      4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=488725">
      5 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      6 <link rel="author" href="https://www.mozilla.org" title="Mozilla">
      7 <link rel="mismatch" href="float-nowrap-4.html">
      8 <style>
      9  div {
     10    width: 10ch;
     11    font-family: monospace;
     12  }
     13  .float {
     14    float: right;
     15    width: 5ch;
     16    height: 5ch;
     17    background: blue;
     18  }
     19  .nowrap {
     20    white-space: nowrap;
     21  }
     22 </style>
     23 <div>
     24  Some
     25  <span class="nowrap">
     26    text that overflows my parent.
     27  </span>
     28  <span class="float"></span>
     29 </div>