gpt4 book ai didi

css - 在流体容器中垂直居中文本

转载 作者:行者123 更新时间:2023-11-28 12:11:52 25 4
gpt4 key购买 nike

我有一个带有 9 个链接的移动菜单。因此,所有元素必须覆盖页面高度的 11.1%。它有效,没问题。

但是!我尝试将容器内的链接垂直居中。我试过的都没有用:(我的问题是垂直百分比与容器的宽度有关。

我在这里:http://jsfiddle.net/YNGq2/

#menu {
height : auto;
width : 80%;
z-index : 50;
position: fixed;
top : 50px;
background-color: #FFFFFF;
bottom : 0px;
box-shadow: 1px 1px 5px #c7c7c7;
}


.mmline {
border-bottom : 2px solid #777777;
height : 11.1%;
text-align: center;
font-family: NeutrafaceCondensedThin;
text-transform: uppercase;
font-size: 30px;
vertical-align: center;
}

和 HTML :

<div id="menu">
<div class="mmline">
title
</div>
<div class="mmline">
title
</div>
<div class="mmline">
title
</div>
<div class="mmline">
title
</div>
<div class="mmline">
title
</div>
<div class="mmline">
bandes dessinées
</div>
<div class="mmline">
title
</div>
<div class="mmline">
title
</div>
<div class="mmline">
title
</div>


</div>

在流体容器中垂直居中的最佳解决方案是什么?

最佳答案

如果你可以在 mmline 内添加而不是使用 inline-block 属性

.mmline:before{
content:'';
display:inline-block;
width:1px;
height:100%;
vertical-align:middle;
}
.mmline span{
vertical-align:middle;
display:inline-block;
}

http://jsfiddle.net/xGyTN/

关于css - 在流体容器中垂直居中文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19444575/

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