Kevin Letchford
letchford.co
Kevin Letchford
@letchford.co
Sometimes you want to list of items/buttons and you want them to be as wide as the widest item.

.container{
display:inline-grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
}
February 22, 2025 at 11:36 PM