I have a css-grid container that uses auto-fill to layout the columns, using minmax to set the column size. Is there a way to target individual items inside the container that fall into whatever the top row happens to wind up being?
ul {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
Is there something in reality that works like the following?
ul li:first-row {
background: #000;
}