Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个容器,一个放在一起,最上面的一个里面有几段文字。
我需要文本的底线在底部容器上方 50 像素处。
所以我有 50px 底部到顶部容器的边距,或者 50px 到底部容器的顶部边距。
问题在于,由于应用于文本的行高,它与文本底线的距离不是 50px。
无论如何,当它到达那个点时,有没有让文本在底部齐平?
希望这是有道理的......我很欣赏它唯一的次要但有些客户希望它具体。
您可以尝试在顶部容器中设置与其底部line-height相同的边框:font-size
line-height
font-size
font-size: 14px; line-height: 14px; border-bottom: 1px solid #f00; marign-bottom: 50px;
jsFiddle
尝试使用padding-bottom而不是margin
padding-bottom
margin