forked from HackYourFuture/HTML-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox.html
More file actions
37 lines (35 loc) · 945 Bytes
/
flexbox.html
File metadata and controls
37 lines (35 loc) · 945 Bytes
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
<html>
<head>
<title>flexbox</title>
<style>
.flex-container {
display:flex;
flex-direction:column-reverse;
flex-grow:center;
background-color:green;
flex-wrap:wrap-reverse;
flex-flow:row wrap;
justify-content: space-around
}
.flex-container div {
background-color: #f1f1f1;
width:100px;
margin:50px
padding:20px;
text-align:center;
line-height: 90px;
font size:50px;
}
</style>
</head>
<body>
<div class="flex-container">
<div>opinion of yours</div>
<div>opinion of they are</div>
<div>opinion of us</div>
<div> collect opinion</div>
</div>
<p> In A public Satuations Every one have there own opinion but in conference meeting focus one a topic
one opinion first list <em>talk</em> about yours <em>opinion</em></p>
</body>
</html>