gpt4 book ai didi

css - 如何垂直对齐嵌套在无序列表中的 anchor 元素内的文本

转载 作者:技术小花猫 更新时间:2023-10-29 11:08:31 25 4
gpt4 key购买 nike

我进行了广泛的搜索并看到了许多关于如何使用 vertical-align 属性和 line-heightvertical-align 文本的示例属性(property)。然而,我所有的努力似乎都没有结果,因为我无法让我的文字垂直对齐。如何垂直对齐文本以使其居中? height 属性不固定,所以我不能使用 line-height

HTML

<nav>
<ul>
<li><a href="html/login.html">Login</a></li>
<li><a href="html/user_registration.html">Register</a></li>
<li><a href="#">Programmes Offered</a></li>
</ul>
</nav>

CSS

nav
{
height: 30%;
width: 100%;
}

nav ul
{
height: 100%;
margin: 0px;
}

nav ul li
{
height: 33%;
width: 100%;
vertical-align: middle;
}

最佳答案

您可以使用伪元素显示为行内框,使用 li 的全高并垂直对齐到中间。 <强> DEMO

body, html {
height:100%; /* needed for demo */
}
nav {
height: 50%; /* increased for demo */
width: 100%;
}
nav ul {
height: 100%;
margin: 0px;
}
nav ul li {
height: 33%;
box-shadow:inset 0 0 0 1px; /* show me li , for demo */
}
nav ul li:before {
content:'';
height:100%;
display:inline-block;
vertical-align: middle;
}

编辑

如果您重置displayvertical-align<a> ,链接可以分布在几行(下面的演示):

body,
html {
height: 100%;
}

nav {
height: 70%; /* height set for snippet demo purpose, could be really too much */
width: 100%;
}

nav ul {
height: 100%; /* will follow height, inherit height value , set in nav if any avalaible */
margin: 0px;
}

nav ul li {
height: 33%;
/* see me and my center*/
box-shadow: inset 0 0 0 1px;
background:linear-gradient(to top, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 50%);
}

nav ul li:before {
content: '';
height: 100%;
display: inline-block;
vertical-align: middle;
}

a {
display: inline-block;
vertical-align: middle;
}
<nav>
<ul>
<li><a href="html/login.html">Login</a>
</li>
<li><a href="html/user_registration.html">Register</a>
</li>
<li><a href="#">Programmes<br/> Offered</a>
</li>
</ul>
</nav>

关于css - 如何垂直对齐嵌套在无序列表中的 anchor 元素内的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24351798/

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