Recent

6/recent/ticker-posts

Html (25) Part 3

HTML (25)


Planet Computers' Astro Slide is a smartphone and PDA in one ...


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

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


Post a Comment

0 Comments