CSS3를 사용하여 교차 축을 따라 Flex 항목을 정렬하려면 코드는 다음과 같습니다. -
예시
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .container { height: 200px; display: flex; width: 100%; align-items: center; border: 2px solid red; } div { width: 100px; height: 100px; color: white; text-align: center; font-size: 30px; } .first { background-color: rgb(55, 0, 255); } .second { background-color: red; } .third { background-color: rgb(140, 0, 255); } </style> </head> <body> <h1>Align flex items along cross axis</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>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -