我知道这可能是愚蠢的,但我面临着这个问题,当我试图遵循语义的方式。我需要有一个粘性页眉和页脚和主要内容是可滚动的。当我遵循一些啧啧,并试图建立自己的,我面临着这个问题,并无法摆脱它。
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
border: none;
text-decoration: none;
}
header,
footer {
position: fixed;
width: 100%;
min-height: 100%;
}
header {
top: 0;
bottom: auto;
}
footer {
top: auto;
bottom: 0;
}
main {
position: relative;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Benazir Beauty</title>
</head>
<body>
<header>Header</header>
<main>
Main
</main>
<footer>Footer</footer>
</body>
</html>
3条答案
按热度按时间hujrc8aj1#
你可以使用flex,把页脚和页眉没有使用的所有空间都给予主块。
更大的页眉/页脚:更大一些
一个二个一个一个
a7qyws3x2#
拆下
header, footer
上的min-height: 100%;
。2guxujil3#
你可以从两个方面着手:
display: grid