gpt4 book ai didi

html - 绝对位置不在设备上滚动或链接的向下位置

转载 作者:太空宇宙 更新时间:2023-11-04 11:55:48 25 4
gpt4 key购买 nike

我的 site它的菜单有问题。它在移动设备上不完全可见或滚动。我附上图片 enter image description here

我在下拉菜单中有 position:absolute 。我可以使这个主菜单与页面的其余部分或任何其他 css 流体定位一起滚动,以使底部的所有设备和桌面的管理和注销链接向下吗?谢谢。

最佳答案

@media (max-width: 767px) {
.log-down,.admin-down { top: 0;}
}

做与 Vasanth 相同的事情,但不是做绝对位置

@media (max-width: 767px) {
.log-down,.admin-down {
position:fixed
bottom: 0px;
}
}

例如

  bottom:0px; = bottom of the page
top:0px; = top of the page
position:fixed = move with the screen

希望我能帮到你,否则我只是误解了你的问题

关于html - 绝对位置不在设备上滚动或链接的向下位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30258899/

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