float-nowrap-4-ref2.html (527B)
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 font-family: monospace; 9 } 10 .float { 11 float: right; 12 width: 5ch; 13 height: 5ch; 14 background: blue; 15 } 16 .nowrap { 17 white-space: nowrap; 18 } 19 </style> 20 <div> 21 Some 22 <br> 23 <span class="float"></span> 24 <span class="nowrap"> 25 text that overflows my parent. 26 </span> 27 </div>