white-space-intrinsic-size-022.html (662B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>CSS Text Test: intrinsic sizing and 'white-space: normal' with Chinese characters</title> 4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-text-3/#line-breaking"> 6 <link rel="match" href="reference/white-space-intrinsic-size-022-ref.html"> 7 <meta name="assert" content=" 8 The max-content size puts all ideographs on the same line. 9 The min-content size puts every ideograph on a different line. 10 "> 11 12 <div style="width: max-content; border: solid"> 13 中文中文 14 </div> 15 <div style="width: min-content; border: solid"> 16 中文中文 17 </div>