Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะตั้งค่าการจัดตำแหน่งระหว่างรายการภายในคอนเทนเนอร์แบบยืดหยุ่นได้อย่างไรเมื่อรายการไม่ได้ใช้พื้นที่ว่างทั้งหมดที่มี JavaScript


ใช้ alignContent คุณสมบัติใน JavaScript เพื่อตั้งค่าการจัดตำแหน่งระหว่างรายการภายในคอนเทนเนอร์แบบยืดหยุ่น

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน alignContent คุณสมบัติใน JavaScript -

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            border: 1px solid #000000;
            width: 240px;
            height: 150px;
            flex-flow: row wrap;
            align-content: space-around;
            display: flex;
         }
         #box div {
            height: 80px;
            width: 80px;
         }
      </style>
   </head>

   <body>
      <div id = "box">
         <div style = "background-color:orange;" ID = "myID1">DIV1</div>
         <div style = "background-color:blue;" id = "myID2">DIV2</div>
         <div style = "background-color:yellow;" id = "myID3">DIV3</div>
      </div>
      <button onclick="display()"> Set </button>
      <script>
         function display() {
            document.getElementById("box").style.alignContent = "space-between";
         }
      </script>
   </body>
</html>