cascade-008.xht (1106B)
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: Shorthand properties with !important</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#important-rules" /> 7 <link rel="help" href="http://www.w3.org/TR/css-cascade-3/#importance" /> 8 <link rel="help" href="http://www.w3.org/TR/css-cascade-4/#importance" /> 9 <meta name="assert" content="Shorthand properties with !important apply to all direct sub-properties." /> 10 <style type="text/css"> 11 div 12 { 13 border: solid green!important; 14 height: 1in; 15 } 16 div 17 { 18 border-top-color: red; 19 border-bottom-color: red; 20 } 21 </style> 22 </head> 23 <body> 24 <p>Test passes if there is a hollow green box below.</p> 25 <div></div> 26 </body> 27 </html>