blob: 78dfc054b9d9dc84f75b2e4e857b24af6472c85a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<style>
.item { background: pink; margin-top: auto}
.strut {
visibility: collapse;
margin-left: auto; /* This should have no effect (but it does!) */
}
</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 class="strut"></div>
</div>
|