Ajax Loader
×
HTML
<section>
1
<section>
2
  <div>div1</div>
3
  <div>div2</div>
4
  <div>div3</div>
5
</section>
 
CSS
section {
1
section {
2
  display: flex;
3
}
4
 
5
section div {
6
  flex: 1;
7
}
8
 
9
 
10
 
11
 
12
 
13
 
14
 
15
 
16
 
17
 
18
 
19
section {
20
  background-color: aqua;
21
  padding: 2px 5px;
22
  width: 960px;
23
}
24
section div {
25
  background-color: white;
26
  margin-right: 10px;
27
  min-width: 100px;
28
}
 

Untitled

CSSDeck G+