Is it possible to position a grid item in the last row and / or column of a grid without knowing the exact number of rows or columns?
Here is the grid setup:
.columns {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min-content, 16.5rem));
grid-gap: 1rem;
}
I have only come across placement by specifying explicit rows or columns: MDN