弹性盒子中的order

Posted ygjzs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了弹性盒子中的order相关的知识,希望对你有一定的参考价值。

order

order 属性 设置或检索弹性盒模型对象的子元素出现的順序。。

注意:如果元素不是弹性盒对象的元素,则 order 属性不起作用。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Flexbox Demo</title>
  <style>
    .container1 {
      height: 500px;
      display: flex;
      border: 2px solid #ccc;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .item {
      width: 200px;
      height: 200px;
    }
  </style>
</head>
<body>
  <div class="container1">
    <div class="item" style="background-color: red;order: 1"></div>
    <div class="item" style="background-color: yellow;order: 1"></div>
    <div class="item" style="background-color: blue;order: -1"></div>
  </div>
</body>
</html>

详解查看官方解释

以上是关于弹性盒子中的order的主要内容,如果未能解决你的问题,请参考以下文章

css3 弹性盒子

弹性盒子布局属性详解

使用 'order' 属性在兄弟姐妹之间定位弹性项目

CSS3中的弹性盒子模型

CSS3弹性盒子多媒体查询

css弹性布局是啥