I am having a hard time describing what I am looking for (searching on Google)
I have dynamic logo content, it could be 3 logos, it could be 7.. My template needs to accommodate them all, They all need to display in one row equally spaced..
So for example if I knew in advance I had 3 items my code would be this
grid-template-columns: 1fr 1fr 1fr;
if I knew in advance I had 7 items my code would be this
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
I won't know how many items I have ever. So how can I code this to accommodate a dynamic amount of columns?