Table Css
Table Css
<head>
<style>
table {
border-collapse: collapse;
width: 75%;
}
th {
height: 75px;
border-bottom: 1px solid gold;
}
td {
height: 50px;
vertical-align:bottom;
text-align:center;
border-bottom: 1px solid gold;
}
</style>
</head>
<body>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Savings</th>
<th>Discounts</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
<td>$100</td>
<td>10%</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
<td>$150</td>
<td>5%</td>
</tr>
<tr>
<td>Joe</td>
<td>Swanson</td>
<td>$300</td>
<td>8%</td>
</tr>
<tr>
<td>Cleveland</td>
<td>Brown</td>
<td>$250</td>
</tr>
</table>
</body>
</html>