border-style-010.xht (973B)
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: Border-style shorthand property set using a single value</title> 5 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-style-properties" /> 6 <meta name="assert" content="The 'border-style' property set using a single value correctly renders the specified value for all sides of the element." /> 7 <style type="text/css"> 8 div 9 { 10 width: 153px; 11 height: 153px; 12 margin: 10px; 13 border-style: groove; 14 border-width: 20px; 15 border-color: black; 16 border-radius: 20px; 17 } 18 </style> 19 </head> 20 <body> 21 <p>Test passes if there is a box with groove borders.</p> 22 <div></div> 23 </body> 24 </html>