-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex box.html
More file actions
57 lines (47 loc) · 1.29 KB
/
flex box.html
File metadata and controls
57 lines (47 loc) · 1.29 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flexbox Basics Examples</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Helvetica;
font-weight: bold;
}
.flex-container {
width: 100%;
border: 3px solid goldenrod;
display: flex;
}
.flex-item {
background: #BFD45D;
border: 2px solid #F9EFD6;
padding: 1em;
}
.flex-item:nth-of-type(2){
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="flex-item item 1">Item 1</div>
<div class="flex-item item 2">Item 2</div>
<div class="flex-item item 3">Item 3</div>
<!-- <div class="flex-item">Item 4</div>-->
<!-- <div class="flex-item">Item 5</div>-->
<!-- <div class="flex-item">Item 6</div>-->
<!-- <div class="flex-item">Item 7</div>-->
<!-- <div class="flex-item">Item 8</div>-->
<!-- <div class="flex-item">Item 9</div>-->
<!-- <div class="flex-item">Item 10</div>-->
<!-- <div class="flex-item">Item 11</div>-->
<!-- <div class="flex-item">Item 12</div>-->
</div>
</body>
</html>