Flexbox - คำสั่ง Flex
flex-order คุณสมบัติถูกใช้เพื่อกำหนดลำดับของรายการ flexbox
ตัวอย่างต่อไปนี้แสดงให้เห็นถึงไฟล์ orderทรัพย์สิน. ที่นี่เรากำลังสร้างกล่องสีหกกล่องโดยมีป้ายกำกับหนึ่งสองสามสี่ห้าหกเรียงตามลำดับเดียวกันและเรากำลังจัดเรียงกล่องใหม่ตามลำดับหนึ่งสองห้าหกสามสี่โดยใช้ คุณสมบัติ Flex-order
<!doctype html>
<html lang = "en">
<style>
.box{
font-size:35px;
padding:15px;
}
.box1{background:green;}
.box2{background:blue;}
.box3{background:red; order:1}
.box4{background:magenta; order:2}
.box5{background:yellow;}
.box6{background:pink;}
.container{
display:inline-flex;
border:3px solid black;
flex-direction:rows;
flex-wrap:wrap;
}
</style>
<body>
<div class = "container">
<div class = "box box1">One</div>
<div class = "box box2">two</div>
<div class = "box box3">three</div>
<div class = "box box4">four</div>
<div class = "box box5">five</div>
<div class = "box box6">six</div>
</div>
</body>
</html>
มันจะให้ผลลัพธ์ดังต่อไปนี้ -
- สั่งซื้อแล้ว
คุณยังสามารถกำหนดค่า –ve ให้กับลำดับดังที่แสดงด้านล่าง
<!doctype html>
<html lang = "en">
<style>
.box{
font-size:35px;
padding:15px;
}
.box1{background:green;}
.box2{background:blue;}
.box3{background:red; order:-1}
.box4{background:magenta; order:-2}
.box5{background:yellow;}
.box6{background:pink;}
.container{
display:inline-flex;
border:3px solid black;
flex-direction:row;
flex-wrap:wrap;
}
</style>
<body>
<div class = "container">
<div class = "box box1">One</div>
<div class = "box box2">two</div>
<div class = "box box3">three</div>
<div class = "box box4">four</div>
<div class = "box box5">five</div>
<div class = "box box6">six</div>
</div>
</body>
</html>
มันจะให้ผลลัพธ์ดังต่อไปนี้ -