-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 918 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>CSS Flex Wrap Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./index.css">
<script src="./index.js"></script>
</head>
<body>
<h2>Responsive, always left-aligned, auto-wrapping grid</h2>
<h3>
<table>
<tr>
<td>Amount of items in total:</td>
<td>
<input id="itemAmount" type="number" value="13" min="1" />
</td>
</tr>
<tr>
<td>Item size (width / height) in px:</td>
<td>
<input id="itemWidth" type="number" value="200" min="1" /> / <input id="itemHeight" type="number" value="480" min="1" />
</td>
</tr>
</table>
<button id="generate">Generate</button>
</h3>
<div class="container" title="blue = container, red = item"></div>
</body>
</html>