bug1375518-5.html (869B)
1 <!DOCTYPE HTML> 2 <title>border-radius and border-collapse tables</title> 3 <style> 4 5 body { background: white; color: black } 6 7 table { border-collapse: collapse; margin: 1em 2px; } 8 td { border: 1px solid black; } 9 10 .radius { border: 3px solid teal; background: aqua; color: black; border-radius: 12px } 11 12 </style> 13 14 <h1>border-radius and border-collapse tables</h1> 15 16 <table> 17 <tbody> 18 <tr><td>xx<td>xx<td>xx 19 </tbody> 20 <tbody class="radius"> 21 <tr><td>xx<td>xx<td>xx 22 <tr><td>xx<td>xx<td>xx 23 </tbody> 24 <tbody> 25 <tr><td>xx<td>xx<td>xx 26 </tbody> 27 </table> 28 29 <table> 30 <tr class="radius"><td>xx<td>xx<td>xx 31 <tr><td>xx<td>xx<td>xx 32 </table> 33 34 <table> 35 <colgroup class="radius"><col><col><colgroup><col> 36 <tr><td>xx<td>xx<td>xx 37 <tr><td>xx<td>xx<td>xx 38 </table> 39 40 <table> 41 <col><col class="radius"><col> 42 <tr><td>xx<td>xx<td>xx 43 <tr><td>xx<td>xx<td>xx 44 </table>