-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox3.html
More file actions
35 lines (30 loc) · 741 Bytes
/
Copy pathflexbox3.html
File metadata and controls
35 lines (30 loc) · 741 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Flexbox #03</title>
<link rel="stylesheet" href="css/tag.css">
<style>
.flex-container div {
box-sizing: border-box;
flex-basis: 200px;
}
.flex-container {
display: flex;
flex-direction: column;
}
.flex-container div:nth-child(4) {
flex: 3 6 100px;
}
</style>
</head>
<body>
<div class="flex-container tag nolabel">
<div class="tag nolabel">1</div>
<div class="tag nolabel">2</div>
<div class="tag nolabel">3</div>
<div class="tag nolabel">4</div>
</div>
<script src="js/tag.js"></script>
</body>
</html>