假设我有以下CSS和超文本标记语言代码:
#header {height: 150px;}
<div id="header"><h1>Header title</h1>Header content (one or multiple lines)</div>
标题部分的高度是固定的,但标题内容可能会改变。
我希望标题的内容与标题部分的底部垂直对齐,因此最后一行文本“粘”在标题部分的底部。
因此,如果只有一行文本,则如下所示:
-----------------------------| Header title|||| header content (resulting in one line)-----------------------------
如果有三条线:
-----------------------------| Header title|| header content (which is so| much stuff that it perfectly| spans over three lines)-----------------------------
如何在CSS中做到这一点?