CSS order 属性

CSS 参考手册 CSS 参考手册


设置弹性盒对象元素的顺序:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    #main {
      width: 400px;
      height: 150px;
      border: 1px solid #c3c3c3;
      display: -webkit-flex;
      /* Safari */
      display: flex;
    }

    #main div {
      width: 70px;
      height: 70px;
    }
    /* Safari 6.1+ */

    div#myRedDIV {
      -webkit-order: 2;
    }

    div#myBlueDIV {
      -webkit-order: 4;
    }

    div#myGreenDIV {
      -webkit-order: 3;
    }

    div#myPinkDIV {
      -webkit-order: 1;
    }
    /* Standard syntax */

    div#myRedDIV {
      order: 2;
    }

    div#myBlueDIV {
      order: 4;
    }

    div#myGreenDIV {
      order: 3;
    }

    div#myPinkDIV {
      order: 1;
    }
  </style>
</head>
<body>

  <div id="main">
    <div style="background-color:coral;" id="myRedDIV"></div>
    <div style="background-color:lightblue;" id="myBlueDIV"></div>
    <div style="background-color:lightgreen;" id="myGreenDIV"></div>
    <div style="background-color:pink;" id="myPinkDIV"></div>
  </div>

  <p><b>注意:</b> Internet Explorer 10 及更早版本浏览器不支持 order 属性。</p>
  <p><b>注意:</b> Safari 6.1 及更新版本通过 -webkit-order 属性支持该属性。</p>

</body>
</html>

尝试一下 »


浏览器支持

表格中的数字表示支持该属性的第一个浏览器的版本号。

紧跟在 -webkit-, -ms- 或 -moz- 后的数字为支持该前缀属性的第一个版本。

属性
order 29.0
21.0 -webkit-
11.0 28.0
18.0 -moz-
9.0
6.1 -webkit-
17.0

定义和用法

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

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

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    #main {
      width: 400px;
      height: 150px;
      border: 1px solid #000000;
      display: flex;
    }

    #main div {
      width: 70px;
      height: 70px;
    }

    #myGreenDIV {
      animation: mymove 5s infinite;
      /*Safari 和 Chrome:*/
      -webkit-animation: mymove 5s infinite;
    }

    @keyframes mymove {
      50% {
        order: 6;
      }
    }
    /*Safari 和 Chrome:*/

    @-webkit-keyframes mymove {
      50% {
        order: 6;
      }
    }
  </style>

</head>
<body>

  <p>改变绿色 DIV 元素的顺序,从 1 到 6 再回到 1:
    <p>

      <div id="main">
        <div style="background-color:lightgreen;order:1;" id="myGreenDIV"></div>
        <div style="background-color:coral;order:2;"></div>
        <div style="background-color:lightblue;order:3;"></div>
        <div style="background-color:pink;order:4;"></div>
      </div>

      <p>在 CSS 中,order 属性是 <em>可动画化(animatable)</em> 的。</p>

      <p><strong>注意:</strong>Chrome 不支持动画的 order 属性。</p>
      <p>Internet Explorer 10、Firefox 和 Opera 支持 CSS 动画。</p>
      <p>Safari 和 Chrome 通过带有前缀 -webkit-,支持 CSS 动画。</p>

</body>
</html>

尝试一下 »

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    #main {
      width: 400px;
      height: 150px;
      border: 1px solid #000000;
      display: flex;
    }

    #main div {
      width: 70px;
      height: 70px;
    }
  </style>
</head>
<body>

  <div id="main">
    <div style="background-color:coral;" id="myRedDIV"></div>
    <div style="background-color:lightblue;" id="myBlueDIV"></div>
    <div style="background-color:lightgreen;" id="myGreenDIV"></div>
    <div style="background-color:pink;" id="myPinkDIV"></div>
  </div>

  <p>点击“尝试一下”按钮,改变四个 DIV 的顺序:</p>

  <button onclick="myFunction()">尝试一下</button>

  <script>
    function myFunction() {
      document.getElementById("myRedDIV").style.order = "4";
      document.getElementById("myBlueDIV").style.order = "3";
      document.getElementById("myGreenDIV").style.order = "1";
      document.getElementById("myPinkDIV").style.order = "2";
    }
  </script>

  <p><b>注意:</b>Internet Explorer 和 Safari 不支持 order 属性。</p>

</body>
</html>

尝试一下 »

默认值: 0
继承:
可动画化: 是,参见个别的属性。请参阅 可动画化(animatable)。 - 尝试一下 -
版本: CSS3
JavaScript 语法: object.style.order="2" - 尝试一下 -

CSS 语法

order: number|initial|inherit;

属性值

描述
number 默认值是 0。规定灵活项目的顺序。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

相关文章

CSS 参考手册:flex 属性

CSS 参考手册:flex-basis 属性

CSS 参考手册:flex-direction 属性

CSS 参考手册:flex-flow 属性

CSS 参考手册:flex-grow 属性

CSS 参考手册:flex-shrink 属性

CSS 参考手册:flex-wrap 属性

CSS 参考手册:align-content 属性

CSS 参考手册:align-items 属性

CSS 参考手册:align-self 属性


CSS 参考手册 CSS 参考手册