gpt4 book ai didi

html - 当它们的高度不同时,为什么第一个跨度会进入第二个跨度的底部?

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

我有这个 HTML:

.one{
display: inline-block;
width: 80px;
border: 1px solid;
}

.two{
display: inline-block;
width: 100px;
border: 1px solid;
}
<span class="one"> Explanation: </span>
<span class="two">There is some explanation about something. There is some explanation about something</span>

如您所见,EXPLANATION 一词位于.two 框的底部。我怎样才能把它放在最前面?这是预期的结果:

enter image description here

最佳答案

vertical-align: top; 拯救!

.one{
display: inline-block;
width: 80px;
border: 1px solid;
vertical-align: top;
}

.two{
display: inline-block;
width: 100px;
border: 1px solid;
}
<span class="one"> Explanation: </span>
<span class="two">There is some explanation about something. There is some explanation about something</span>

关于html - 当它们的高度不同时,为什么第一个跨度会进入第二个跨度的底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39012779/

25 4 0
文章推荐: javascript - 更改 JSON 文件搜索结果的格式
文章推荐: css - 在
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com