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