c5518-brdr-t-001.xht (1473B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: border-top</title> 5 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#border-top"/> 6 <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/> 7 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 8 <style type="text/css"><![CDATA[ 9 body { color: blue; } 10 td { text-align: center; } 11 td, span, .three { border-top: blue 2px solid; } 12 .skip { border-top: none; } 13 ]]></style> 14 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties"/> 15 </head> 16 <body> 17 <p>There should be a solid blue line directly over every occurance of the word "<span>HERE ⇧</span>". (So there should be 7 blue lines on this page.)</p> 18 <table> 19 <tr> 20 <td colspan="2"> 21 HERE ⇧ 22 </td> 23 </tr> 24 <tr> 25 <td> 26 HERE ⇧ 27 </td> 28 <td class="skip"> 29 dummy text 30 <table> 31 <tr> 32 <td> 33 HERE ⇧ 34 </td> 35 </tr> 36 </table> 37 </td> 38 </tr> 39 </table> 40 <ul> 41 <li class="three"> 42 HERE ⇧ 43 <ul> 44 <li>dummy text</li> 45 <li>dummy text</li> 46 <li>dummy text</li> 47 </ul> 48 </li> 49 <li class="three">HERE ⇧</li> 50 <li class="three">HERE ⇧</li> 51 </ul> 52 </body> 53 </html>