outline-width-014.xht (1248B)
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: Outline-width with a minimum plus one value in points</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-width" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#dynamic-outlines" /> 8 <meta name="assert" content="The 'outline-width' property supports a minimum plus one length value in points that sets the width of the outline." /> 9 <style type="text/css"> 10 #div1 11 { 12 margin: 1pt 0 0 1pt; 13 outline: solid green; 14 outline-width: 1pt; 15 width: 300px; 16 } 17 #div2 18 { 19 border: solid green 1pt; 20 margin-top: 10px; 21 width: 300px; 22 } 23 </style> 24 </head> 25 <body> 26 <p>Test passes if the boxes below are the same size.</p> 27 <div id="div1">Filler Text</div> 28 <div id="div2">Filler Text</div> 29 </body> 30 </html>