gpt4 book ai didi

html - 将不同大小的文本对齐到列表元素的底部

转载 作者:搜寻专家 更新时间:2023-10-31 22:21:52 26 4
gpt4 key购买 nike

给定以下标记:

<ul>
<li><span>One</span></li>
<li><span>Two</span></li>
<li><span>Three</span></li>
<li><span>Four</span></li>
<li><span>Five</span></li>
</ul>

以及以下 CSS:

body {
font-family: Arial, sans-serif;
font-size: 14px;
}

ul {
list-style-type: none;
padding: 0;
margin: 0;
}

li {
border-bottom: 1px solid red;
float: left;
margin-left: 10px;
height: 70px; /* height of largest element */
}

span {
font-weight: bold;
display: block; /* important, needs to be block */
}

li:nth-child(2) {
font-size: 2em;
}

li:nth-child(3) {
font-size: 3em;
}

li:nth-child(4) {
font-size: 4em;
}

li:nth-child(5) {
font-size: 5em;
}

每个列表项包含不同大小的文本。

我想对齐每个 <span>元素到其父元素的底部 <li>确保底部边框也对齐。

Here is the jsfiddle工作。

需要支持IE8>以上

注意:元素必须是 float 的

最佳答案

从 li 中删除 float:left 并添加 display:inline;垂直对齐:底部;

li {
border-bottom: 1px solid red;
display:inline; vertical-align:bottom;
margin-left: 10px;
height: 70px; /* height of largest element */
}

DEMO

关于html - 将不同大小的文本对齐到列表元素的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13624417/

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