gpt4 book ai didi

html - CSS 垂直居中对齐

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

我知道这个问题之前已经讨论过很多次了。但老实说,我没有为这个独特的案例找到任何合适的解决方案:

我有以下 HTML 代码:

 <div class="print-types-links">
<ul>
<li>
<a href="#">
<div>
<span>aaa</span>
</div>
</a>
</li>
<li>
<a href="#">
<div>
<span>bbb</span>
</div>
</a>
</li>
</ul>
</div>

和以下 CSS:

.print-types-links li{
list-style: none;

}
.print-types-links ul{
padding: 0;
}
.print-types-links a{
text-decoration:none;
}
.print-types-links div:hover{
background-color:#F7FAFF;
}
.print-types-links div{
border-style: solid;
border-width:1px;
border-color:#EAF2FD;
margin-bottom: 10px;
padding-bottom: 60px;
text-align: center;
}

.print-types-links span{
font-weight:bold;
font-size: 1.3em;
}

我正在尝试垂直对齐 <span><div>里面.

我希望的要求结果:文本应位于每个框的中间。我知道我可以用指定的像素数来做到这一点。但我正在努力避免它。

我也试过使用 vertical-align:middlespan和 parent div没有任何成功。

Fiddle link对于这个问题。

谢谢。

最佳答案

当您在 div 中使用 padding-bottom: 60px; 属性时,这就是 div 未垂直对齐的原因。你可以使用上面的属性,比如 padding-top: 30px; , padding-bottom: 30px 而不是垂直对齐的 div。

请引用jsfiddle

CSS:

.print-types-links div{
border-style: solid;
border-width:1px;
border-color:#EAF2FD;
margin-bottom: 10px;
padding-bottom: 30px;
padding-top: 30px;
text-align: center;
}

关于html - CSS 垂直居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28263064/

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