How to vertically align
  • elements in
      ?
  • 前端 未结 4 1363
    慢半拍i
    慢半拍i 2020-11-28 05:09

    I have a horizontal

      and I need to center each
    • in it vertically. My markup is below. Each
    • has a border
    4条回答
    •  遥遥无期
      2020-11-28 05:32

      You can use flexbox for this.

      ul {
          display: flex;
          align-items: center;
      }
      

      A detailed explanation of how to use flexbox can be found here.

    提交回复
    热议问题