bordercolor-3.html (1138B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 <html > 3 <head> 4 <title>CSS Test: HTML bordercolor Attribute</title> 5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> 6 <link rel="help" href="RELEVANT_SPEC_SECTION"/> 7 <meta name="assert" content="Figure out which rules are ignored and how."/> 8 <style type="text/css"> 9 html { color: lime; } 10 table { margin: 0.5em; } 11 td { color: blue; } 12 </style> 13 </head> 14 <body> 15 <table bordercolor=orange border> 16 <tr><td>A<td>A 17 </table> 18 19 <table bordercolor=orange frame=border> 20 <tr><td>B<td>B 21 </table> 22 23 <table bordercolor=orange rules=all> 24 <tr><td>C<td>C 25 <tr><td>C<td>C 26 </table> 27 28 <table bordercolor=orange rules=cols> 29 <tr><td>D<td>D 30 <tr><td>D<td>D 31 </table> 32 33 <table bordercolor=orange rules=none> 34 <tr><td>E<td>E 35 <tr><td>E<td>E 36 </table> 37 38 <table bordercolor=orange> 39 <tr><td>F<td>F 40 </table> 41 42 <table bordercolor=orange rules=all frame=none> 43 <tr><td>G<td>G 44 <tr><td>G<td>G 45 </table> 46 47 <table style="border-color: orange;" border> 48 <tr><td>H<td>H 49 </table> 50 </body> 51 </html>