我有div
一些孩子:
<div class="content">
<h1>heading 1</h1>
<h2>heading 2</h2>
<p>Some more or less text</p>
<a href="/" class="button">Click me</a>
</div>
我想要以下布局:
-------------------
|heading 1 |
|heading 2 |
|paragraph text |
|can have many |
|rows |
| |
| |
| |
|link-button |
-------------------
无论文本中有多少文本,p
我都希望.button
始终将其始终停留在底部,而不会将其从流程中移出。我听说Flexbox可以实现这一点,但我无法使其正常工作。
position:relative
-它很愚蠢,因为我认为默认情况下它是相对的,但是您可以对其进行设置,以便包含孩子的绝对位置。然后bottom:0
将适合冲洗。
static
不是relative
。
postition: absolute; bottom 0;
吗?