table-border-paint-caption-change-ref.html (622B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>The table element should update its border whenever the caption side changes</title> 5 <link rel="author" title="Peng Zhou" href="mailto:zhoupeng.1996@bytedance.com"> 6 <link rel="help" href="https://www.w3.org/TR/css-tables-3/#computing-the-table-height"> 7 </head> 8 <style> 9 #caption { 10 caption-side: bottom; 11 } 12 table, tr, td { 13 border: 1px solid #000000; 14 } 15 </style> 16 <body> 17 <table> 18 <caption id="caption"> 19 caption 20 </caption> 21 <tbody> 22 <tr> 23 <td>a</td> 24 <td>b</td> 25 </tr> 26 <tr> 27 <td>c</td> 28 <td>d</td> 29 </tr> 30 </tbody> 31 </table> 32 </body> 33 </html>