text-justify-inter-character-cursive.html (899B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>text-justify: inter-character for cursive script</title> 6 <link rel="author" href="mailto:tkent@chromium.org"> 7 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-text-justify-inter-character"> 8 <link rel="help" href="https://drafts.csswg.org/css-text-3/#justify-cursive"> 9 <link rel='match' href='text-justify-inter-character-cursive-ref.html'> 10 <meta name="assert" content="text-justify:inter-character should not break connected characters."> 11 <style> 12 p { 13 font-size: 2em; 14 border: 1px solid black; 15 padding: 10px 0px; 16 } 17 .test { 18 text-align-last: justify; 19 text-justify: inter-character; 20 } 21 .test img { 22 width: 20px; 23 height: 20px; 24 vertical-align: top; 25 } 26 </style> 27 </head> 28 <body> 29 <p class="test">مرحبا بالعالمfoo</p> 30 <p class="test">مرحبا بالعالم<img src="/images/blue.png"></p> 31 </body> 32 </html>