gpt4 book ai didi

css - 底部 Angular 粘性页脚

转载 作者:行者123 更新时间:2023-12-01 09:14:38 27 4
gpt4 key购买 nike

我想在底部放置一个页脚。

enter image description here

出于某种原因,它会像这样出现。

在 index.html 中,我有:

<main flex layout="column">
<div>
<div ui-view="" ></div>
</div>
</main>

<footer>
<md-toolbar class="md-hue-2 md-scroll-shrink">
<div layout="row" layout-align="center center" flex>
Powered by Webocity Technologies
</div>
</md-toolbar>

粘不粘,这看起来不对。这里似乎有什么问题以及如何解决这个问题?

最佳答案

使用 position:fixed;bottom:0px; 在底部显示页脚

footer{
position:fixed;
bottom:0px;
background-color:pink;
width:100%;
}
<main flex layout="column">
<div>
<div ui-view="" ></div>
</div>
</main>

<footer>
<md-toolbar class="md-hue-2 md-scroll-shrink">
<div layout="row" layout-align="center center" flex>
Powered by Webocity Technologies
</div>
</md-toolbar>
</footer>

关于css - 底部 Angular 粘性页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47829727/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com