-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsivetable.html
More file actions
47 lines (44 loc) · 1.11 KB
/
Copy pathresponsivetable.html
File metadata and controls
47 lines (44 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<style>
.item-container {
display: grid;
grid-template-columns: 5em 1fr;
}
textarea {
width: 100%;
font-family:Arial, Helvetica, sans-serif;
font-size: 0.85em;
resize: none;
}
input {
font-family:Arial, Helvetica, sans-serif;
font-size: 0.85em;
}
ol {
padding: 0;
}
</style>
</head>
<body>
<ol>
<li class="item-container">
<div>Quantity</div>
<div>Detail</div>
</li>
<li class="item-container">
<div><input type="text" value="1"/></div>
<div>
<textarea cols="200">Icom IC-F1000 VHF/FM Handheld Radio Transaceiver complete with BP-279 Li-Ion Battery Pack and BC-213 Single Unit Rapid Charger</textarea>
</div>
</li>
<li class="item-container">
<div><input type="text" value="3"/></div>
<div>
<textarea cols="200">Icom IC-F1000 VHF/FM Handheld Radio Transaceiver complete with BP-279 Li-Ion Battery Pack and BC-213 Single Unit Rapid Charger</textarea>
</div>
</li>
</ol>
</body>
</html>