Source code
Revision control
Copy as Markdown
Other Tools
<!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>