码迷,mamicode.com
首页 > 其他好文 > 详细

弹性盒子中的order

时间:2019-12-15 14:43:12      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:div   盒模型   containe   order   utf-8   元素   详解   enter   tle   

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

标签:div   盒模型   containe   order   utf-8   元素   详解   enter   tle   

原文地址:https://www.cnblogs.com/ygjzs/p/12043915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!