作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我当前的代码中,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/
我是一名优秀的程序员,十分优秀!