div居于底部
时间: 2023-06-28 18:06:51 浏览: 125
居底部显示
3星 · 编辑精心推荐
要让一个 `div` 元素居于底部,可以使用如下的 CSS 样式:
```css
div {
position: fixed;
bottom: 0;
}
```
这里使用了 `position: fixed` 让元素脱离了文档流,并且使用了 `bottom: 0` 让元素与父元素底部对齐。需要注意的是,父元素需要有足够的高度才能容纳该元素。
阅读全文
居底部显示