gpt4 book ai didi

html - 在 DIV 内垂直居中 UL

转载 作者:太空狗 更新时间:2023-10-29 13:40:37 25 4
gpt4 key购买 nike

我有以下内容:

<div style="background: Red; height: 100px;">
<ul>
<li><a href="/">Home</a></li>
</ul>
</div>

我想将 ul 在 div 中垂直居中,但我不确定该怎么做。 Fiddle demo谁能就此给我建议。

马里卢

最佳答案

您始终可以将 display: table-cell;vertical-align: middle; 结合使用:

HTML:

<div>
<ul>
<li><a href="/">Home</a></li>
</ul>
</div>

CSS:

div {

background: red;
height: 100px;
width: 500px;
display: table-cell;
vertical-align: middle;
text-align: center;

}

See working jsFiddle demo

关于html - 在 DIV 内垂直居中 UL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6053592/

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