Hey you all. I've been getting acquainted with HTML for about 3+ months, but there are still some things that I quite don't understand.
For my Web Page that I'm coding, it looks like this.
Code:
<html>
<head>
<style type="text/css">
body {
background-color: SteelBlue;
border-color: SteelBlue;
margin-right: 15px;
margin-left: 15px;
}
table.blue {
border: 1px solid blue;
}
</style>
</head>
<body>
<table width=100% height=100% cellpadding=20 border= class="blue">
<th width=15% height=5%>Table Heading 1 </th>
<th width=10% height=5%>Table Heading 2 </th>
</tr>
<tr>
<td width=50% height=25% >Column1 </td>
<td widht=10% height=5% >Column2 </td>
</tr>
</tr>
</table>
</body>
</html>
My question is how can I change the color of each border surrounding the words Table Heading, Table Heading 2, Column1, and Column2. I'm trying to get rid of the dull white/grayish outline of the table and make them all a specific color I choose. Thanks!
|