Table Layout

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>

<style>
table{
width: 100%;
}

.fixed{
table-layout: fixed;
}

.auto{
table-layout: auto;
}
</style>
</head>
<body>
<h1>Fixed</h1>
<table border="2px" class="fixed">
<tr>
<td>100000000001</td>
<td>2222222222222222222222222222222222222222222222</td>
<td>3333333333333333333333333333333</td>
</tr>
</table>

<h1>Auto</h1>
<table border="2px" class="auto">
<tr>
<td>100000000001</td>
<td>2222222222222222222222222222222222222222222222</td>
<td>3333333333333333333333333333333</td>
</tr>
</table>


</body>
</html>

Comments

Popular posts from this blog

pesudo element

sticky