Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
font: 16px/1 monospace;
background: white;
}
.container {
display: grid;
grid-template-rows: repeat(2, 80px);
gap: 4px;
height: min-content;
width: 180px;
border: 1px solid blue;
}
.row {
display: flex;
flex-direction: row-reverse;
gap: 4px;
}
item {
display: block;
width: min-content;
color: white;
background: #555;
}
</style>
</head>
<body>
<p>align-items: last baseline</p>
<div class="container">
<div class="row" style="align-items: last baseline;">
<item>item 1 with some extra text</item>
<item>item 3</item>
<item>item 5</item>
</div>
<div class="row" style="align-items: last baseline;">
<item>item 2</item>
<item>item 4</item>
<item>item 6</item>
</div>
</div>
</body>
</html>