tor-browser

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

float-nowrap-1.html (682B)


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