到目前为止我所尝试的:http: //cssdesk.com/zhc9c
HTML:
<div class="container">
<h1>FIRST</h1>
<span class="second">This is second text</span>
<span class="third">Third text</span>
</div>
CSS:
.container {
padding-bottom:10px;
border-bottom:1px solid;
position:relative;
}
h1 {
display:inline;
margin:0;padding:0;
}
.second {
margin-left:10px;
}
.third {
position:absolute;
right:0;bottom:10px;
}
问题:
- 第三个文本似乎没有与其他文本在同一基线上对齐。
- 因为我使用的是设置底部属性(第三个文本)的绝对位置,这意味着如果我更改容器的底部填充,我也需要设置此属性。是否可以使其“自动”调整?