gpt4 book ai didi

css - 如何在浏览器底部创建一个持久的栏?

转载 作者:行者123 更新时间:2023-11-28 11:51:13 25 4
gpt4 key购买 nike

什么 HTML/CSS 用于创建填充浏览器底部并在用户滚动时保持原位的栏?参见 envato.com了解我在说什么。

最佳答案

我以前用过这个方法,看起来效果不错。

http://ryanfait.com/sticky-footer/

* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}

关于css - 如何在浏览器底部创建一个持久的栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2058592/

25 4 0