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

จัดแนวรายการ flex ที่จุดเริ่มต้นของคอนเทนเนอร์ด้วย CSS


ใช้คุณสมบัติ justify-content ด้วยค่า flex-start เพื่อจัดตำแหน่ง flex-items ไว้ที่จุดเริ่มต้น

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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         .mycontainer {
            display: flex;
            background-color: red;
            justify-content: flex-start;
         }
         .mycontainer > div {
            background-color: orange;
            text-align: center;
            line-height: 60px;
            font-size: 30px;
            width: 100px;
            margin: 5px;
         }
      </style>
    </head>
   <body>
      <h1>Result</h1>
      <div class = "mycontainer">
         <div>Rank1</div>
         <div>Rank2</div>
         <div>Rank3</div>
         <div>Rank4</div>
      </div>
   </body>
</html>