@@ -17,6 +17,7 @@ <h1>CSS Chassis</h1>
1717
1818< h2 > Tables</ h2 >
1919
20+ < h3 > Basic Table</ h3 >
2021< p > Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</ p >
2122
2223< table class ="table ">
@@ -50,6 +51,7 @@ <h2>Tables</h2>
5051 </ tbody >
5152</ table >
5253
54+ < h3 > Div Table</ h3 >
5355< p > Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</ p >
5456
5557< div class ="table ">
@@ -83,5 +85,39 @@ <h2>Tables</h2>
8385 </ div >
8486</ div >
8587
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+
86122</ body >
87123</ html >
0 commit comments