第2节 讲解flex布局容器?六?属性之flex-direction

Posted xl4ng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第2节 讲解flex布局容器?六?属性之flex-direction相关的知识,希望对你有一定的参考价值。

  • flex-direction属性决定主轴的?向

描述
row 默认值。主轴为水平?方向,起点在左边。
row-reverse 主轴为水平?方向,起点在右边。
column 主轴为垂直方向,起点在上面。
column-reverse 主轴为垂直方向,起点在下面。
  • 示例

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
    .flexTest {
      display: flex;
      flex-direction: row;
      height: 1000px;
    }
    .item {
      width: 100px;
      height: 100px;
      margin: 10px;
      background: #c3c3c3;
    }
  </style>
</head>
<body>
  <div class="flexTest">
    <div class="item">1</div>
    <div class="item">2</div>
    <div class="item">3</div>
    <div class="item">4</div>
  </div>
</body>
</html>
  • row

技术图片

  • row-reverse

技术图片

  • column

技术图片

  • column-reverse

技术图片

以上是关于第2节 讲解flex布局容器?六?属性之flex-direction的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序之view的flex布局(2)

CSS3-flex弹性布局之flex属性

Vue 中 Flex布局

前端应知应会:flex布局详解

css之dispaly:flex;多行多列

弹性布局基础讲解与高效应用