8 lines
248 B
HTML
8 lines
248 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.item { background: pink; margin-top: auto}
|
|
</style>
|
|
<div style="display:flex; flex-direction: column;
|
|
height: 100px; border: 1px solid black">
|
|
<div class="item">This text should be bottom-aligned</div>
|
|
</div>
|