-
Notifications
You must be signed in to change notification settings - Fork 0
/
cell spacing.html
57 lines (51 loc) · 993 Bytes
/
cell spacing.html
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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid Blue;
border-spacing: 25px;
}
th, td {
padding: 20px;
}
h1 {
color:Red;
}
</style>
</head>
<body>
<center>
<h1>OnAirCode</h1>
<h2>Cell Spacing and Cell Padding Tutorial</h2>
<h3>Border-spacing and CSS padding</h3>
<table id="table">
<tr>
<th>Year</th>
<th>Month</th>
<th>Day</th>
</tr>
<tr>
<td>2017</td>
<td>July</td>
<td>15</td>
</tr>
<tr>
<td>2018</td>
<td>January</td>
<td>27</td>
</tr>
<tr>
<td>2019</td>
<td>August</td>
<td>7</td>
</tr>
<tr>
<td>2020</td>
<td>May</td>
<td>8</td>
</tr>
</table>
</center>
</body>
</html>