blob: 85707509a99e294c1a76fca0d93ab3bdffa529c4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.grid {
display: grid;
border: 1px solid black;
width: 100px;
height: 100px;
align-items: flex-end;
}
.item {
width: 50px;
height: 50px;
background-color: green;
}
</style>
</head>
<body>
<div class="grid">
<div class="item"></div>
</div>
</body>
</html>