tor-browser

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

float-nowrap-7.html (765B)


      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="match" href="float-nowrap-1.html">
      8 <style>
      9  div {
     10    width: 10ch;
     11    white-space: nowrap;
     12    font-family: monospace;
     13  }
     14  .nowrap {
     15    white-space: nowrap;
     16  }
     17  .float {
     18    float: right;
     19    width: 5ch;
     20    height: 5ch;
     21    background: blue;
     22  }
     23 </style>
     24 <div>
     25  <span class="nowrap">S<div class="float"></div><span>ome</span> text that overflows my parent.</span>
     26 </div>