0% found this document useful (0 votes)
4 views

Table Css

Uploaded by

zoom1
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Table Css

Uploaded by

zoom1
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<html>

<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>

<h2>The width and height Properties</h2>


<p>Set the width of the table, and the height of the table header row:</p>

<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>

You might also like