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

HTMLDOMスタイルのflexDirectionプロパティ


HTML DOMスタイルのflexDirectionプロパティは、フレックス要素の配置方向を設定または返すために使用されます。

以下は、-

の構文です。

flexDirectionプロパティの設定-

object.style.flexDirection = "row|row-reverse|column|column-reverse|initial|inherit"

上記の特性は次のように説明されます-



フレックスアイテムを縦に列として表示します。
列反転
初期
このプロパティを初期値に設定します。
継承
親プロパティ値を継承する

説明
これは、フレックスアイテムを行として水平方向に表示し、デフォルト値です。
row-reverse
これは、フレックスアイテムを水平方向に、行の逆の順序で表示します。
これにより、フレックスアイテムが垂直方向に表示されますが、列の順序が逆になります。

flexDirectionプロパティの例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
   #demo {
      box-shadow: 0 0 0 3px #a323c3;
      display: flex;
      flex-direction: column-reverse;
   }
   #demo div {
      margin: auto;
      border: thin solid green;
   }
</style>
<script>
   function changeFlexDirection() {
      document.getElementById("demo").style.flexDirection="row-reverse";
      document.getElementById("Sample").innerHTML="The flex direction for the container div is    changed to row-reverse";
   }
</script>
</head>
<body>
   <div id="demo">
      <div>1  <img src="https://www.tutorialspoint.com/images/3d.png"></div>
      <div>2  <img src="https://www.tutorialspoint.com/images/blockchain.png"></div>
      <div>3  <img src="https://www.tutorialspoint.com/images/css.png"></div>
      <div>4  <img src="https://www.tutorialspoint.com/images/reactjs.png"></div>
   </div>
   <p>Change the above container div flex direction by clicking the below button</p>
   <button onclick="changeFlexDirection()">Change Flex Direction</button>
   <p id="Sample"></p>
</body>
</html>

出力

HTMLDOMスタイルのflexDirectionプロパティ

フレックス方向の変更」をクリックすると 」ボタン-

HTMLDOMスタイルのflexDirectionプロパティ


  1. HTMLDOMスタイルのflexプロパティ

    HTML DOMスタイルのflexプロパティは、displayプロパティがflexに設定されている要素の柔軟な長さを設定または返すために使用されます。これは、flexGrow、flexShrink、およびflexBasisのプロパティを操作するために使用されます。 以下は、-の構文です。 フレックスプロパティの設定- object.style.flex = "flex-grow flex-shrink flex-basis|auto|initial|inherit" 以下は値です- 値 説明 flex-grow 指定された数だけ柔軟なアイテム

  2. HTMLDOMスタイルjustifyContentプロパティ

    HTML DOM justifyContentプロパティは、使用可能なすべてのスペースを使用しない場合に、フレックスアイテムを主軸上で水平方向に整列させるために使用されます。 以下は、-の構文です。 justifyContentプロパティの設定- object.style.justifyContent = "flex-start|flex-end|center|space-between|space-around|initial|inherit" 上記の特性は次のように説明されます- 値 説明 flex-start これは、コンテナの先頭にア