1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Table
<style>
th, td {
border: 3px solid black;
border-collapse: collapse;
background-color: red;
}
caption {
background-color: yellow;
}
th, td {
padding: 5px;
text-align: left;
}
table {
display: inline-table;
}
</style>
<table>
<caption style="text-transform: uppercase ">Month savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<caption style="background-color: blue;">MonthlysavingsMonthly savings!!! Monthly savings!!!</caption>
<tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
just a table
|