Table
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.t{
/* border-collapse: collapse; */
border-spacing: 20px;
caption-side: bottom;
empty-cells: hide;
}
table.auto{
table-layout: auto;
}
table.fixed{
table-layout: fixed;
}
</style>
</head>
<body>
<table class="t" border="2">
<caption >Student Table</caption>
<tr>
<td>Sr.</td>
<td>Name</td>
<td>Roll</td>
</tr>
<tr>
<td>1</td>
<td>Tejas</td>
<td>1001</td>
</tr>
<tr>
<td>1</td>
<td>Tejas</td>
<td>1001</td>
</tr>
<tr>
<td>1</td>
<td>Tejas</td>
<td></td>
</tr>
</table>
<table class="auto fixed" border="2" width="100%">
<tr>
<td>1000000000000000000000000000000000000</td>
<td>1999999999999999999</td>
<td>777777777777</td>
</tr>
</table>
</body>
</html>
Comments
Post a Comment