- Notifications
You must be signed in to change notification settings - Fork 27.3k
/
Copy pathflex-align0.html
43 lines (37 loc) · 781 Bytes
/
flex-align0.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
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<htmllang="en-US">
<head>
<metacharset="utf-8">
<metaname="viewport" content="width=device-width">
<title>Flexbox align 0 — starting code</title>
<style>
html {
font-family: sans-serif;
}
body {
width:70%;
max-width:960px;
margin:20px auto;
}
button {
font-size:18px;
line-height:1.5;
width:15%;
}
div {
height:100px;
border:1px solid black;
}
/* Add your flexbox CSS below here */
</style>
</head>
<body>
<div>
<button>Smile</button>
<button>Laugh</button>
<button>Wink</button>
<button>Shrug</button>
<button>Blush</button>
</div>
</body>
</html>