text-decoration-074.xht (917B)
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 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 5 <title>CSS Test: 'text-decoration' - inheritance exception 4</title> 6 <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#lining-striking-props"/> 8 <meta name="assert" content="'text-decoration' values must not be propagated to the contents of 'inline-block' descendants"/> 9 <style type="text/css"> 10 #test{ 11 font-size:80px; 12 text-decoration:line-through; 13 } 14 span{ 15 display:inline-block; 16 } 17 </style> 18 </head> 19 20 <body> 21 <p>To pass, there <strong>must not</strong> be a line through the text below.</p> 22 <div id="test"> 23 <span>text</span> 24 </div> 25 </body> 26 </html>