-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlex-wrap.html
39 lines (38 loc) · 922 Bytes
/
Flex-wrap.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>Flex-wrap</title>
</head>
<body>
<style>
.flex-container{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.item{
height: 130px;
width: 250px;
margin: 20px;
border: none;
background-color: rgb(230, 227, 227);
border-radius: 10px;
padding-left: 20px;
padding-bottom: 10px;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="item"><p>HTML</p>
Hyper-Text MarkUp Language</div>
<div class="item"><p>CSS</p>
Cascading Style Sheet</div>
<div class="item"><p>JavaScript</p>JavaScript that make webpage Dymnamic effect.</div>
<div class="item"><p>ReactJs</p>
ReactJs is a JavaScript Library.</div>
</div>
</body>
</html>