text-justify-inter-character-atomic-inline.html (909B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Justification Method: text-justify: inter-character</title> 6 <link rel="author" title="Kent Tamura" href="mailto:tkent@chromium.org"> 7 <link rel="help" href="https://drafts.csswg.org/css-text-4/#valdef-text-justify-inter-character"> 8 <link rel='match' href='text-justify-inter-character-atomic-inline-ref.html'> 9 <meta name="assert" content="text-justify:inter-character should handle a consecutive run of atomic inlines as a single typographic unit."> 10 <link rel="stylesheet" href="/fonts/ahem.css"> 11 <style> 12 p { 13 font: 20px/1 Ahem; 14 border: 1px solid black; 15 padding: 10px; 16 width: 100px; 17 } 18 .test { 19 text-align-last: justify; 20 text-justify: inter-character; 21 } 22 .test img { 23 width: 20px; 24 height: 20px; 25 vertical-align: top; 26 } 27 </style> 28 </head> 29 <body> 30 <p class="test">X<img src="/images/blue.png"><img src="/images/blue.png">X</p> 31 </body> 32 </html>