gpt4 book ai didi

html - 内联 block 元素不垂直对齐省略号溢出

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

我正在显示内联的 labelinputdiv 元素,希望它们垂直对齐,这最初是有效的。

但是,当我试图让 div 的内容溢出并带有省略号时,它们不再垂直对齐

注意:这是在 Chrome 46.02490.86 中观察到的

p {color:red;}
input,
label,
div {
width: 50px;
display: inline-block;
margin-left: 5px;
}
label {
text-align: right;
}
.longdesc {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
<label>Name:</label>
<input type='text' value='James'>
<label>Desc:</label>
<div>Short</div>
<hr />
<label>Name:</label>
<input type='text' value='James'>
<label>Desc:</label>
<div class='longdesc'>Longer Description</div>
<p>
In the second example "Long" is higher up
</p>

如何在不打乱垂直对齐的情况下实现溢出效果?

最佳答案

vertical-align: top 添加到您的 inline-block 元素中:

p {color:red;}
input,
label,
div {
width: 50px;
display: inline-block;
margin-left: 5px;
vertical-align: top;
}
label {
text-align: right;
}
.longdesc {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
<label>Name:</label>
<input type='text' value='James'>
<label>Desc:</label>
<div>Short</div>
<hr />
<label>Name:</label>
<input type='text' value='James'>
<label>Desc:</label>
<div class='longdesc'>Longer Description</div>
<p>
In the second example "Long" is higher up
</p>

关于html - 内联 block 元素不垂直对齐省略号溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34274005/

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