Here's an unusual query that I've been pondering. Despite checking various CSS documentation, I haven't found a clear answer yet. Take a look at this:
https://i.sstatic.net/SglOl.jpg
It resembles something like this
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
Notice the auto-column on the right side. But what if I want to flip the direction of the auto-filling? In other words, have images appear on the right and create new empty columns on the left instead? Is there a way to achieve this?