inline-formatting-context-019.xht (1193B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Text-align 'justify' and 'inline-block' elements</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#inline-formatting" /> 7 <meta name="assert" content="If 'text-align' is set to 'justify' the user agent does not stretch spaces and/or words when the 'display' property is set to 'inline-block'." /> 8 <style type="text/css"> 9 div 10 { 11 border: solid black; 12 text-align: justify; 13 width: 200px; 14 } 15 span 16 { 17 display: inline-block; 18 } 19 </style> 20 </head> 21 <body> 22 <p>Test passes if the width of spaces and/or characters of the first line of "Filler Text" is larger than the second line of "Filler Text".</p> 23 <div> 24 Filler Text Filler Text 25 <span>Filler Text Filler Text</span> 26 </div> 27 </body> 28 </html>