float-nowrap-8.html (672B)
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 span { 15 float: right; 16 width: 5ch; 17 height: 5ch; 18 background: blue; 19 } 20 </style> 21 <div> 22 Some <span></span> 23 text that overflows my parent. 24 </div>