table css code example
Example 1: table border css
table, th, td {
border: 1px solid black;
}
Example 2: css table border-collapse
.table1 {
border-collapse: collapse;
}
Example 3: html create a table
<html>
<head>
<title>Working with HTML Tables</title>
</head>
<body>
<table>
<tr>
<th>Name</th>
<th>Date of Birth</th>
<th>Weight</th>
</tr>
<tr>
<td>Mary</td>
<td>12/13/1994</td>
<td>130</td>
</tr>
</table>
</body>
</html>
Example 4: table css
tr , th , td {
border: 1px solid black;
padding: 5%;
text-align: center;
}