blob: d3c696f575b168d19960684843e437f36ae5c4de (
plain)
1
2
3
4
5
6
7
8
|
<!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>
|