No borders table
Description:
How to create table without borders in an html page.
Code:
<html>
<body>
<h4> No borders table</h4>
<table border="0">
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
</tr>
<tr>
<td>cell 5</td>
<td>cell 6</td>
</tr>
</table>
</body>
</html>
Play with the code:
See working example:
Explanation:
To create table without border in an html page, you just have to set value 0 for the border attribute.
See Also:
HTML: Html, Body, Table, Tr, Td
|