Recent

6/recent/ticker-posts

HTML (25) Part 2

HTML (25)


Latest Computer Technology Articles - 90 Matching Articles ...


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


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>
<P>
<table border ="5" frame="hsides">
<tr>
<td>Sample1</td>
<td>Sample2</td>
<td>Sample3</td>
</tr>
</table>
<P>

<table border ="5" frame="lhs">
<tr>
<td>Sample1</td>
<td>Sample2</td>
<td>Sample3</td>
</tr>
</table>
</body>
</html>



Post a Comment

0 Comments