gpt4 book ai didi

css - Bootstrap Reveal Footer 修复了在 Safari 上不工作的问题

转载 作者:行者123 更新时间:2023-11-28 03:49:03 24 4
gpt4 key购买 nike

我的底部粘性页脚有问题。它在所有浏览器上都能正常工作,但在 Safari 上却不行……为什么?? :(

#main{
background-color: #f0f0f0;
box-shadow: 0px 20px 30px -20px rgba(0, 0, 0, 0.8);
z-index: 1;
position: relative;
margin-bottom: 250px;
}

footer {
height: 250px;
z-index: -100;
position: fixed;
bottom: 0px;
}

谢谢! ;)

最佳答案

我已经解决了!只需添加此代码...;)

html, body{
min-height: 100%;
height: auto !important;
height: 100%;
}

还是谢谢你

关于css - Bootstrap Reveal Footer 修复了在 Safari 上不工作的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43822564/

24 4 0
文章推荐: c++ - 通过索引获取文件名
文章推荐: javascript - wp.​​customize.previewer.bind : "Cannot read property ' bind' of undefined
文章推荐: c++ - 允许嵌套逻辑 && 运算符吗?
文章推荐: html - 是 block 元素还是行内元素?