-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_flexbox_3.html
More file actions
20 lines (20 loc) · 885 Bytes
/
css_flexbox_3.html
File metadata and controls
20 lines (20 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible", content="IE-edge">
<title>Flexbox</title>
<link rel="stylesheet", href="css/style.css">
<link rel="stylesheet", href="css/fonts.css">
</head>
<body>
<main>
<section style="display: flex; justify-content: space-around; align-items: normal;">
<div style="border: 2px dashed black; width: 100px; height: 300px; text-align: center;">1</div>
<div style="border: 2px dashed black; width: 100px; height: 700px; text-align: center;">2</div>
<div style="border: 2px dashed black; width: 100px; height: 500px; text-align: center;">4</div>
</section>
</main>
</body>
</html>