HTML Table css style reference
< html > < head > < link rel = "stylesheet" href = "table.css" /> </ head > < body > < table class = "table1" > < thead > < tr > < th width = "120px" > </ th > < th width = "100px" > Column1 </ th > < th width = "100px" > Column2 </ th > </ tr > </ thead > < tbody > < tr > < th scope = "row" > Row1 </ th > < td > 1.1 </ td > < td > 1.2 </ td > </ tr > < tr > < th scope = "row" > Row2 </ th > < td > 2.1 </ td > < td > 2.2 </ td > </ tr > </ tbody > < tfoot ...