CSS styling for quickly creating HTML tables
Inorder to use the quick table styling, just add one table style class and one table color class to your html table.
<table class="quick-table1 table-blue">
<tr>
<th>Rank</th>
<th>Country Name</th>
<th>Continent</th>
<th>Population</th>
</tr>
<tr>
<td>1</td>
<td>China</td>
<td>Asia</td>
<td>1.4 Billion</td>
</tr>
<tr>
<td>2</td>
<td>India</td>
<td>Asia</td>
<td>1.3 Billion</td>
</tr>
<tr>
<td>3</td>
<td>USA</td>
<td>North America</td>
<td>0.3 Billion</td>
</tr>
</table>
- quick-table1
- quick-table2
- quick-table3
- table-black
- table-grey
- table-brown
- table-purple
- table-blue
- table-teal
- table-cyan
- table-light-green
- table-green
- table-orange
- table-pink
- table-red