gpt4 book ai didi

html - 如何将未排序列表放在预定义 (a px *b px) 框的底部?

转载 作者:行者123 更新时间:2023-11-27 23:12:39 27 4
gpt4 key购买 nike

在我当前的代码中,ul 一直放在页面底部,超过了我的预定义框。

我尝试使用 position:fixed 和 bottom:0

.box {
width: 900px;
height: 450px;
}
.box ul {
list-style: none;
text-align: center;
position: fixed;
bottom: 0;
}

.box li {
display: inline-block;
}

.box a{
text-decoration: none;
color: blue;
width: 150px;
display: block;
}

我预计 ul 会到达框的底部,然后我可以使用填充或边距将其略微向上放置,这样它就不会完全停留在框的底部。

最佳答案

position: fixed; 相对于整个视口(viewport)定位,这就是为什么你会在页面底部看到它,position: absolute; 被定位相对于其父元素。您可能需要将 position: relative; 添加到 .box,然后将 中的 fixed 更改为 absolute .box ul

关于html - 如何将未排序列表放在预定义 (a px *b px) 框的底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58443474/

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