CSS로 동일한 높이의 열을 생성하려면 코드는 다음과 같습니다 -
예시
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .container { display: table; width: 100%; } .column { display: table-cell; padding: 16px; background-color: greenyellow; } .column:nth-of-type(2n-1) { color: red; background-color: yellow; } </style> </head> <body> <h1>Equal Height Columns Example</h1> <div class="container"> <div class="column"> <h2>Column 1</h2> <h2>Column 1</h2> <h2>Column 1</h2> </div> <div class="column"> <h2>Column 2</h2> <h2>Column 2</h2> <h2>Column 2</h2> </div> <div class="column"> <h2>Column 3</h2> <h2>Column 3</h2> <h2>Column 3</h2> </div> </div> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -