break-spaces-with-overflow-wrap-004.html (1425B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text Test: white-space: break-spaces and Overflow Wrapping</title> 4 <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com"> 5 <link rel="help" title="3. White Space and Wrapping: the white-space property" href="https://drafts.csswg.org/css-text-3/#white-space-property"> 6 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-break-spaces"> 7 <link rel="help" title="5.5. Overflow Wrapping: the overflow-wrap/word-wrap property " href="https://drafts.csswg.org/css-text-3/#overflow-wrap-property"> 8 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-anywhere"> 9 <meta name="flags" content="ahem"> 10 <link rel="match" href="reference/pre-wrap-001-ref.html"> 11 <meta name="assert" content="The word is not broken if there are previous breaking opportunities, honoring the 'white-space: break-spaces' value."> 12 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 13 <style> 14 div { 15 font: 20px/1 Ahem; 16 } 17 .fail { 18 position: absolute; 19 color: red; 20 z-index: -1; 21 } 22 span { color: green; } 23 .test { 24 color: green; 25 width: 2ch; 26 27 white-space: break-spaces; 28 overflow-wrap: anywhere; 29 } 30 </style> 31 <body> 32 <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> 33 <div class="fail"><span>XX</span><br>XX</div> 34 <div class="test"> XX</div> 35 </body>