-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflex-grow.html
39 lines (38 loc) · 905 Bytes
/
flex-grow.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.flex-container
{
display: flex;
font-size: 30px;
}
.flex-grow
{
background-color: blue;
flex-grow: 2;
}
.flex-grow1
{
background-color: red;
flex-grow: 6;
}
.flex-grow2
{
background-color:black;
flex-grow: 10;
color: white;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="flex-grow">Content one with flex-grow=1</div>
<div class="flex-grow1">Content one with flex-grow=2</div>
<div class="flex-grow2">Content one with flex-grow=3</div>
</div>
</body>
</html>