blob: 60f1276951ed018f03c02caf6b8d41fb3912e4a4 [file] [log] [blame]
<!DOCTYPE HTML>
<style>
.container {
width: 200px;
height: 300px;
background-color: blue;
align-content: flex-end;
}
.item {
background-color: green;
border: solid thin blue;
}
</style>
There should be no invalidations when align-content changes on a non-flex container.
<div id="container">
<div class="item">
<div style="height: 100px"></div>
</div>
<div class="item">
<div style="height: 150px"></div>
</div>
</div>