Horje
How to add HTML Table Border Color

With the border-color property, you can set the color of the border.


Full Example of HTML Table Border Color

index.html
Example: HTML
<!DOCTYPE html>
<html>
<head>
<style>
th, td {
  border-style:solid;
  border-color: #96D4D4;
}
</style>
</head>
<body>

<h2>Table With Border Color</h2>

<p>Use the CSS border-color property to set the color of the borders.</p>

<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
  <tr>
    <td>John</td>
    <td>Doe</td>
    <td>80</td>
  </tr>
</table>

</body>
</html>

Output should be:

Full Example of HTML Table Border Color
Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_border_color





Related Articles
What is HTML Table Borders HTML Table Borders
How To Add a Border in HTML Table HTML Table Borders
How to create HTML Collapsed Table Borders HTML Table Borders
How to Create Style HTML Table Borders HTML Table Borders
How to create Round HTML Table Borders HTML Table Borders
How to create HTML Dotted Table Borders HTML Table Borders
How to add HTML Table Border Color HTML Table Borders

Single Articles
Full Example of HTML Table Border ColorHTML Table Borders

Read Full:
HTML Table Borders
Category:
Web Tutorial
Sub Category:
HTML Table Borders
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
35



Share on: