gpt4 book ai didi

css - 将
    置于父级
    底部的中心

转载 作者:太空宇宙 更新时间:2023-11-03 18:55:39 24 4
gpt4 key购买 nike

我想以类似于 this 的方式结束

“11 月 22 日”元素应在父 div 的底部对齐并居中对齐。其余日期(21、20、19、18)应该紧随其后。 (中心垂直线仅用于说明目的)。

这在 css 中可行吗?

编辑:这是我到目前为止所得到的:

<div class="container">
<div id="motd">
<ul>
<li class="selected">22 November</li>
<li>21</li>
<li>20</li>
</ul>
</div>
</div>

和 CSS

 .container
{
width: 960px;
margin: 0 auto;
overflow: hidden;
}

#motd
{
width: 700px;
height: 300px;
background-color: #efefef;
position: relative;
}

ul
{
position: absolute;
left: 0;
bottom: 0;
}

li
{
float: left;
list-style: none;
padding: 7px 10px 7px 10px;
background-color: #cacaca;
color: #ffffff;
}

li.selected
{
background-color: #393939;
}

最佳答案

为 child 使用相对位置并为 child 设置样式

postion:relative;
margin-right:auto;
margin-left:auto;

第二个选项是给它一个确定的宽度并减去父 div

parent div - child 然后 css child position absolute and left: difference divided by 2(基本上你想要每边的像素数量相同

关于css - 将 <ul> 或 <div> 置于父级 <div> 底部的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13546967/

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