x
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<table class="table"> <caption> A list of your recent invoices. </caption> <thead> <tr> <th>Invoice</th> <th>Status</th> <th>Method</th> <th class="text-end">Amount</th> </tr> </thead> <tbody> <tr> <th>INV001</th> <td>Paid</td> <td>Credit Card</td> <td class="text-end">$250.00</td> </tr> <tr> <th>INV002</th> <td>Pending</td> <td>PayPal</td> <td class="text-end">$150.00</td> </tr> <tr> <th>INV003</th> <td>Unpaid</td> <td>Transfer</td> <td class="text-end">$350.00</td> </tr> <tr> <th>INV004</th> <td>Paid</td> <td>Credit Card</td> <td class="text-end">$450.00</td> </tr> <tr> <th>INV005</th> <td>Paid</td> <td>PayPal</td> <td class="text-end">$550.00</td> </tr> <tr> <th>INV006</th> <td>Pending</td> <td>Bank Transfer</td> <td class="text-end">$200.00</td> </tr> <tr> <th>INV007</th> <td>Unpaid</td> <td>Credit Card</td> <td class="text-end">$300.00</td> </tr> </tbody> <tfoot> <tr> <td colspan="3">Total</td> <td class="text-end">$2,500.00</td> </tr> </tfoot></table>
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<table class="table"> <caption> A list of your recent invoices. </caption> <thead> <tr> <th>Invoice</th> <th>Status</th> <th>Method</th> <th class="text-end">Amount</th> </tr> </thead> <tbody> <tr> <th>INV001</th> <td>Paid</td> <td>Credit Card</td> <td class="text-end">$250.00</td> </tr> <tr> <th>INV002</th> <td>Pending</td> <td>PayPal</td> <td class="text-end">$150.00</td> </tr> <tr> <th>INV003</th> <td>Unpaid</td> <td>Transfer</td> <td class="text-end">$350.00</td> </tr> <tr> <th>INV004</th> <td>Paid</td> <td>Credit Card</td> <td class="text-end">$450.00</td> </tr> <tr> <th>INV005</th> <td>Paid</td> <td>PayPal</td> <td class="text-end">$550.00</td> </tr> <tr> <th>INV006</th> <td>Pending</td> <td>Bank Transfer</td> <td class="text-end">$200.00</td> </tr> <tr> <th>INV007</th> <td>Unpaid</td> <td>Credit Card</td> <td class="text-end">$300.00</td> </tr> </tbody> <tfoot> <tr> <td colspan="3">Total</td> <td class="text-end">$2,500.00</td> </tr> </tfoot></table>
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
37
:where(.table) { caption-side: bottom; font-size: var(--text-sm); inline-size: var(--size-full); caption { color: var(--color-text-subtle); margin-block-start: var(--size-4); } thead { color: var(--color-text-subtle); } tbody tr { border-block-start-width: var(--border); } tr:hover { background-color: rgb(from var(--color-border-light) r g b / .5); } th { font-weight: var(--font-medium); text-align: start; } th, td { padding: var(--size-2); } tfoot { background-color: rgb(from var(--color-border-light) r g b / .5); border-block-start-width: var(--border); font-weight: var(--font-medium); }}
Java Script is not required or multiple files are needed, check the notes.
No notes provided.