CSS를 사용하여 브라우저 창의 전체 높이에 맞게 요소를 늘리려면 코드는 다음과 같습니다. -
예시
<!DOCTYPE html> <html> <head> <title>Page Title</title> <style> *{ box-sizing: border-box; } html, body { height: 100%; margin: 0; } .fullHeight{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; height: 100%; background: rgb(135, 27, 207); color:white; font-size: 40px; padding: 40px; } </style> </head> <body> <div class="fullHeight">This div element will stretch to the whole height and width of the window</div> </body> </html>
출력
위의 코드는 다음 출력을 생성합니다 -