float-nowrap-1-notref.html (450B)
1 <!doctype html> 2 <title>CSS Test Reference</title> 3 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 4 <link rel="author" href="https://www.mozilla.org" title="Mozilla"> 5 <style> 6 div { 7 width: 10ch; 8 white-space: nowrap; 9 font-family: monospace; 10 } 11 span { 12 float: right; 13 width: 5ch; 14 height: 5ch; 15 background: blue; 16 } 17 </style> 18 <div> 19 <span></span> 20 Some text that overflows my parent. 21 </div>