html table border center only code example
Example 1: html table with separated column without outer border
<!DOCTYPE html>
<html lang="en">
<head>
<style>
th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
</table>
</body>
</html>
Example 2: how to apply border to table in angular
td.mat-cell {
padding: 16px 0;
border-bottom: 1px solid #ffa600;
border-top: 1px solid #ffa600;
}
td.mat-cell:first-child {
border-left: 1px solid #ffa600;
}
td.mat-cell:last-child {
border-right: 1px solid #ffa600;
}
table {
border-spacing: 0 8px !important;
}