CSS

CSS-多个div水平并列布局

Vue开发

Posted by 松下百合子 on June 27, 2019

css 多个div水平并列布局样式设计,当做笔记记之。

多个div并列显示

  • html样式
1
2
3
4
5
 <div class="gInfo">
    <div class="gLan"></div>
    <div class="gTitle">Winner Dice</div>
    <div class="cTag">DICE</div>
 </div>
  • css样式
1
2
3
4
  .gInfo {
    display: flex;
    flex-direction: row;
  }