File: -table-caption.htm

package info (click to toggle)
litehtml 0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,928 kB
  • sloc: ansic: 31,385; cpp: 27,328; makefile: 9
file content (36 lines) | stat: -rwxr-xr-x 639 bytes parent folder | download | duplicates (5)
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