What is Table Borders in HTML 5
HTML table border is used for border width and style.
Example
<!Doctype Html>
<html>
<head>
<title>Table Borders</title>
</head>
<body>
<table width="200" height="200" border="1">
<tr>
<td>1</td>
<td>A</td>
</tr>
<tr>
<td>2</td>
<td>B</td>
</tr>
<tr>
<td>3</td>
<td>C</td>
</tr>
<tr>
<td>4</td>
<td>D</td>
</tr>
</table>
</body>
</html>
Output
Post Your Comment