-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtable-sizing.html
More file actions
52 lines (42 loc) · 776 Bytes
/
Copy pathtable-sizing.html
File metadata and controls
52 lines (42 loc) · 776 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
table,
td,
th {
border: 1px solid black;
text-align: center;
height: 30px;
}
table {
border-collapse: collapse;
width: 30%;
}
th{
height: 60px;
vertical-align: top;
}
</style>
</head>
<body>
<h2>Table Sizing</h2>
<table>
<tr>
<th>Item</th>
<th>Price</th>
</tr>
<tr>
<td>Tea</td>
<td>10</td>
</tr>
<tr>
<td>Coffee</td>
<td>20</td>
</tr>
</table>
</body>
</html>