我正在尝试获得类似于基线的垂直对齐,但是在文本的第一行而不是最后一行。 top
和text-top
都没有正确对齐。有任何想法吗?谢谢!
编辑:这假设在对齐的元素中字体大小相同。请参阅以下@FelipeAls对已接受答案的评论。
编辑:现在使用代码示例和图片:
我要做的是将文本垂直对齐在几个内联块元素中,以便它们的基线都处于相同的位置。我宁愿做一些事情,比如使用边距和填充来推动事情,因为每当我这样做时,我就会发现,我最终会使用不同的浏览器来玩傻瓜。
HTML:
<div class="foo">
<span>one</span>
<span>two two two two</span>
<span>three three three three three three three three three</span>
<button type="button">action</button>
</div>
<div class="bar">
<span>one</span>
<span>two two two two</span>
<span>three three three three three three three three three</span>
<button type="button">action</button>
</div>
CSS:
body {
font-family: sans-serif;
font-size: 12px;
}
button {
font-family: inherit;
font-size: inherit;
}
div {
position: relative;
width: 500px;
text-align: center;
}
div.foo, div.bar {
margin-bottom: 2em;
}
div span {
text-align: center;
}
div.foo span {
display: inline-block;
width: 50px;
vertical-align: top;
}
div.bar span {
display: inline-block;
width: 50px;
vertical-align: baseline;
}
div button {
display: inline-block;
width: 125px;
}
答案 0 :(得分:2)