html5 - Why does the second flex immediately follow the first flex container?
淡淡烟草味
淡淡烟草味 2017-07-01 09:12:21
0
2
1538

Question: How can the second flex be moved behind the first flex container?

navbar code

.navbar {
  height: 60px;
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
  display: flex;

  .theme;
  .green-border;
}

container code

.container {
  display: flex;

  .make-col(@max-col-num);
  .make-col-offset(@max-col-num);
}
淡淡烟草味
淡淡烟草味

reply all(2)
大写字母H

flex-direction: colum;?

漂亮男人

.container is a flex container, .navbar and .main are both flex containers and flex items

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template