c5516-brdr-c-000-ref.xht (903B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 5 <head> 6 7 <title>CSS Reftest Reference</title> 8 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 10 11 <style type="text/css"><![CDATA[ 12 p 13 { 14 border-color: green green green green; 15 border-style: solid solid solid solid; 16 border-width: medium medium medium medium; 17 } 18 19 p#multi-color 20 { 21 border-top: purple solid 2em; 22 border-right: green solid 2em; 23 border-bottom: blue solid 2em; 24 border-left: yellow solid 2em; 25 } 26 ]]></style> 27 28 </head> 29 30 <body> 31 32 <p>This box should have a green border.</p> 33 34 <p>This box should have an identical green border.</p> 35 36 <p id="multi-color">Clockwise from top, the borders should be: PURPLE, GREEN, BLUE, YELLOW.</p> 37 38 </body> 39 </html>