Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-break/flexbox/auto-height-flex-item-in-multicol-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
#flex {
display: flex;
flex-wrap: wrap;
height: 200px;
align-content: flex-end;
gap: 60px;
}
</style>
<div style="width: 100px; height: 100px; columns: 2; column-gap: 0;">
<div id="flex">
<div style="height: auto; width: 20px;"></div>
T
</div>
</div>