Table Border
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
table{
border: solid;
border-collapse: collapse;
}
td{
empty-cells: hide;
}
div{
width: 400px;
height: 400px;
background: #0c5460;
border-style: dashed;
border-color: red;
border-top-color: blanchedalmond;
border-width: 8px;
/* border-radius: 240px; */
border-top-left-radius: 114px;
}
</style>
</head>
<body>
<table width="100" border="solid">
<caption>Student Table</caption>
<tr>
<th>Sr</th>
<th>Name</th>
</tr>
<tr>
<td style="overflow: auto">1000000000000000000000000000000000000000000000000</td>
<td>Sabir</td>
</tr>
<tr>
<td>2.</td>
<td style=""></td>
</tr>
</table>
<h1>Border</h1>
<div></div>
</body>
</html>
Comments
Post a Comment