Recent

6/recent/ticker-posts

HTML (25) Part 1

HTML (25)


Bright Computers & Laptop Repair Service, Othakadai - Computer ...



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

Post a Comment

0 Comments