CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSS注文プロパティ


orderプロパティを使用して、フレックスアイテムの順序を設定します

次のコードを実行して、CSSorderプロパティを実装してみてください-

<!DOCTYPE html>
<html>
   <head>
      <style>
         .mycontainer {
            display: flex;
            background-color: orange;
            align-content: space-between;
            height: 150px;
            width: 600px;
            flex-wrap: wrap;
         }
         .mycontainer > div {
            background-color: white;
            text-align: center;
            line-height: 40px;
            font-size: 25px;
            width: 100px;
            margin: 5px;
         }
      </style>
   </head>
   <body>
      <h1>Quiz</h1>
       <div class = "mycontainer">
         <div style = "order: 8">Q1</div>
         <div style = "order: 6">Q2</div>
         <div style = "order: 2">Q3</div>
         <div style = "order: 1">Q4</div>
         <div style = "order: 7">Q5</div>
         <div style = "order: 4">Q6</div>
         <div style = "order: 3">Q7</div>
         <div style = "order: 5">Q8</div>
      </div>
   </body>
</html>

  1. CSS注文プロパティをアニメートする

    CSSを使用してorderプロパティにアニメーションを実装するには、次のコードを実行してみてください 例 <!DOCTYPE html> <html>    <head>       <style>          #demo1 {             width: 600px;             height: 18

  2. CSS分離プロパティ

    分離プロパティは、要素が新しいスタッキングコンテンツを作成する必要があるかどうかを定義するために使用されます。構文は次のとおりです- 構文 isolation: auto|isolate|initial|inherit; 例 <!DOCTYPE html> <html> <head> <style> .demo1 {    background-color: orange; } #demo2 {    width: 300px;    height: 400px; } .demo3 {