gpt4 book ai didi

css - text-bottom 是什么意思?

转载 作者:行者123 更新时间:2023-11-28 16:21:56 26 4
gpt4 key购买 nike

有没有人告诉我如何区分 CSS 中“veritical-align”的“text-bottom”和“bottom”。非常感谢。

最佳答案

如果包含显式的 heightline-height 会更明显。 text-bottom 将匹配文本的底部,而 bottom 将匹配元素的底部。

div {
display: inline-block;
font-family: "Arial";
background-color: blue;
height: 100px;
line-height: 80px;
}

#left .px100 {
font-size: 100px;
}

#left .px50 {
font-size: 50px;
vertical-align: text-bottom;
}

#right .px100 {
font-size: 100px;
}

#right .px50 {
font-size: 50px;
vertical-align: bottom;
}
<div id="left">
x
<span class="px100">x<span>
<span class="px50">x<span>
</div>
<div id="right">
x
<span class="px100">x<span>
<span class="px50">x<span>
</div>

关于css - text-bottom 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50256412/

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