1613380.html (380B)
1 <!DOCTYPE html> 2 <style> 3 .item { background: pink; margin-top: auto} 4 .strut { 5 visibility: collapse; 6 margin-left: auto; /* This should have no effect (but it does!) */ 7 } 8 </style> 9 <div style="display:flex; flex-direction: column; 10 height: 100px; border: 1px solid black"> 11 <div class="item">This text should be bottom-aligned</div> 12 <div class="strut"></div> 13 </div>