@@ -17,6 +17,7 @@ <h1>CSS Chassis</h1>
17
17
18
18
< h2 > Tables</ h2 >
19
19
20
+ < h3 > Basic Table</ h3 >
20
21
< p > Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</ p >
21
22
22
23
< table class ="table ">
@@ -50,6 +51,7 @@ <h2>Tables</h2>
50
51
</ tbody >
51
52
</ table >
52
53
54
+ < h3 > Div Table</ h3 >
53
55
< p > Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</ p >
54
56
55
57
< div class ="table ">
@@ -83,5 +85,39 @@ <h2>Tables</h2>
83
85
</ div >
84
86
</ div >
85
87
88
+ < h3 > Full Width Table</ h3 >
89
+ < p > Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</ p >
90
+
91
+ < table class ="table-fullwidth ">
92
+ < thead class ="table-head ">
93
+ < tr class ="table-row ">
94
+ < th class ="table-heading " scope ="col "> ID</ th >
95
+ < th class ="table-heading " scope ="col "> Product</ th >
96
+ < th class ="table-heading " scope ="col "> Category</ th >
97
+ < th class ="table-heading " scope ="col "> Price</ th >
98
+ </ tr >
99
+ </ thead >
100
+ < tbody class ="table-body ">
101
+ < tr class ="table-row ">
102
+ < th class ="table-heading " scope ="row "> 1</ th >
103
+ < td class ="table-cell "> T-Shirt</ td >
104
+ < td class ="table-cell "> Apparel</ td >
105
+ < td class ="table-cell "> $12.99</ td >
106
+ </ tr >
107
+ < tr class ="table-row ">
108
+ < th class ="table-heading " scope ="row "> 2</ th >
109
+ < td class ="table-cell "> Sweat Shirt</ td >
110
+ < td class ="table-cell "> Apparel</ td >
111
+ < td class ="table-cell "> $24.99</ td >
112
+ </ tr >
113
+ < tr class ="table-row ">
114
+ < th class ="table-heading " scope ="row "> 3</ th >
115
+ < td class ="table-cell "> Necklace</ td >
116
+ < td class ="table-cell "> Accessories</ td >
117
+ < td class ="table-cell "> $29.99</ td >
118
+ </ tr >
119
+ </ tbody >
120
+ </ table >
121
+
86
122
</ body >
87
123
</ html >
0 commit comments