outline-table-caption.html (368B)
1 <!DOCTYPE html> 2 <style> 3 table { outline: 1px solid blue; border-collapse: collapse; } 4 .caption, .cell { width: 100px; height: 100px; padding: 0; text-align: left; vertical-align: top; } 5 .caption { background-color: yellow; } 6 .cell { background-color: lime; } 7 </style> 8 <table> 9 <caption class="caption">Caption</caption> 10 <tr><td class="cell">Cell</td></tr> 11 </table>