-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path41Table Cell Spacing.html
More file actions
48 lines (42 loc) · 1 KB
/
41Table Cell Spacing.html
File metadata and controls
48 lines (42 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Table Cell Spacing Set</title>
</head>
<body>
<!--pixel value put in cellspacing-->
<table
border="5"
align="Center"
width="80%"
bgcolor="yellow"
cellpadding="10"
cellspacing="13"
>
<th width="55%">Name</th>
<!--Left, Right, Center-->
<th width="30%">Roll No.</th>
<th>Result</th>
<tr>
<td align="center">Sumit</td>
<td align="center">58</td>
<td align="center">1st</td>
</tr>
<tr>
<td align="center">Bhanu</td>
<td align="center">24</td>
<td align="center">1st</td>
</tr>
<tr>
<td align="center">Shubham</td>
<td align="center">66</td>
<td align="center">1st</td>
</tr>
<tr>
<td align="center">Rahul</td>
<td align="center">63</td>
<td align="center">1st</td>
</tr>
</table>
</body>
</html>