如何将段落设置为段落底边的高度?

时间:2016-12-08 13:01:56

标签: html css html5

如果段落高度为70px,则段落显示段落边距高度的顶部。我想显示段落高度的段落底部。它可以添加CSS样式。我可以使用哪个属性在段落高度的底部显示段落?

<p style="height:70px">paragraph</p>在元素底部显示我的文字。

1 个答案:

答案 0 :(得分:2)

display: table-cellvertical-align: bottom结合使用。

&#13;
&#13;
p {
  height: 100px;
  background-color: #F00;
  display: table-cell;
  vertical-align: bottom;  
}
&#13;
<div>hello</div>

<p>paragraph</p>
&#13;
&#13;
&#13;