HTML (25)
FRAME Attribute (Border Side)
1.Above = Display top edge
2.below = Display bottom edge
3.border = Display all four sides (Default)
4.box = Display all four sides
5.hsides = Display top and bottom edges
6.lhs = Display left edge
7.rhs = Display right edge
8.void = Display no border
9.vsides = Display left and right edge
<tr>
<td>Sample1</td>
<td>Sample2</td>
<td>Sample3</td>
</tr>
</table>
<P>
Example ↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<P>
<table border ="5" frame="box">
<tr>
<td>Sample1</td>
<td>Sample2</td>
<td>Sample3</td>
</tr>
</table>
<table border ="5" frame="hsides"><tr>
<td>Sample1</td>
<td>Sample2</td>
<td>Sample3</td>
</tr>
</table>
<P>
0 Comments