c5516-ibrdr-c-000-ref.xht (1001B)
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 {margin: 3em;} 13 14 span 15 { 16 border-color: green green green green; 17 border-style: solid solid solid solid; 18 border-width: medium medium medium medium; 19 } 20 21 span#multi-color 22 { 23 border-top: purple solid 2em; 24 border-right: green solid 2em; 25 border-bottom: blue solid 2em; 26 border-left: yellow solid 2em; 27 line-height: 6em; 28 } 29 ]]></style> 30 31 </head> 32 33 <body> 34 35 <p><span>This box should have a green border.</span></p> 36 37 <p><span>This box should have a green border.</span></p> 38 39 <p>Clockwise from top, the borders around <span id="multi-color">THIS PHRASE</span> should be: PURPLE, GREEN, BLUE, YELLOW.</p> 40 41 </body> 42 </html>