CSS3를 사용하여 개별 Flex 항목을 재정렬하려면 order 속성을 사용하십시오. 다음은 플렉스 항목을 재정렬하는 코드입니다 -
예시
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .container { height: 150px; display: flex; width: 100%; border: 2px solid red; } div { width: 200px; height: 150px; color: white; text-align: center; font-size: 30px; } .first { background-color: rgb(55, 0, 255); order:2; } .second { background-color: red; order:3; } .third { background-color: rgb(140, 0, 255); order:1; } </style> </head> <body> <h1>Reordering individual items example</h1> <div class="container"> <div class="first">First Div</div> <div class="second">Second Div</div> <div class="third">Third Div</div> </div> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -