first-line-selector-011.xht (1046B)
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: Inline-block usage with :first-line</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-line-pseudo" /> 7 <meta name="assert" content="The first line of an inline-block cannot be the first formatted line of an ancestor element." /> 8 <style type="text/css"> 9 span 10 { 11 display: inline-block; 12 } 13 div 14 { 15 background: white; 16 color: red; 17 } 18 div:first-line 19 { 20 color: green; 21 } 22 </style> 23 </head> 24 <body> 25 <p>Test passes if there is no red visible on the page.</p> 26 <div> 27 <span>Text<br />Text</span> 28 </div> 29 </body> 30 </html>