해결된 질문
작성
·
208
답변 2
1
여러 방법이 있을 수 있는데요, 간단히 하는 방법으로 calc 함수를 이용한 방법이 있습니다.
아래 코드처럼 min-height를 calc로 설정해보세요~
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
}
header {
height: 75px;
background: blue;
}
footer {
height: 75px;
background: red;
}
article {
min-height: calc(100vh - 150px);
}
</style>
</head>
<body>
<section>
<header>header</header>
<article>article</article>
<footer>footer</footer>
</section>
</body>
</html>
0