我的页脚有问题。我做了一个,并没有停留在页面底部。 你可以在下面看到它停留在页面中间的某个地方.. 页脚必须位于页面底部,本示例中的“测试”内容必须位于顶部。
我试过使用,同样的事情发生了。
我该如何解决这个问题?
@import url(https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);
:root {
--main-color: #4D6275;
--second-color: #3F5060;
--body-bg: #2E3841;
--box-bg: #272F37;
--text-color: #D5D5D5;
--grey-color: #B2B2B2;
--simple-color: #C3C3C3;
--content-height: 92px;
--space-top: 30px;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: var(--body-bg);
color: var(--text-color);
}
a {
text-decoration: none !important;
}
button:focus {
outline: none;
}
.wrapper {
position: relative;
width: auto;
height: 100vh;
padding: 15px;
font-size: 1.1em;
top: 0;
}
.content-wrapper {
margin-top: 20px;
margin-bottom: 10px;
margin-left: 20px;
}
.main-footer {
position: relative;
padding: 10px 10px 0px 10px;
bottom: 0;
width: 100%;
background-color: red;
}
.copyright {
float: right;
}
<body>
<div class="wrapper">
<div class="content-wrapper">
test<br>
test<br>
test<br>test<br>test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
</div>
</div>
<div class="main-footer">
<div class="copyright">
<a href="{{ url('dmca') }}">DMCA</a> | <a href="{{ url('contact') }}">Contact</a>
</div>
© netview.com 2019-2021 - all rights reserved.
</div>
</body>
答案 0 :(得分:0)
改变.wrapper
类的高度
@import url(https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);
:root {
--main-color: #4D6275;
--second-color: #3F5060;
--body-bg: #2E3841;
--box-bg: #272F37;
--text-color: #D5D5D5;
--grey-color: #B2B2B2;
--simple-color: #C3C3C3;
--content-height: 92px;
--space-top: 30px;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: var(--body-bg);
color: var(--text-color);
}
a {
text-decoration: none !important;
}
button:focus {
outline: none;
}
.wrapper {
position: relative;
width: auto;
height: 100%;
padding: 15px;
font-size: 1.1em;
top: 0;
}
.content-wrapper {
margin-top: 20px;
margin-bottom: 10px;
margin-left: 20px;
}
.main-footer {
position: relative;
padding: 10px 10px 0px 10px;
bottom: 0;
width: 100%;
background-color: red;
}
.copyright {
float: right;
}
<body>
<div class="wrapper">
<div class="content-wrapper">
test<br>
test<br>
test<br>test<br>test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
test<br>
</div>
</div>
<div class="main-footer">
<div class="copyright">
<a href="{{ url('dmca') }}">DMCA</a> | <a href="{{ url('contact') }}">Contact</a>
</div>
© netview.com 2019-2021 - all rights reserved.
</div>
</body>