我想要3列。第1列和第3列的大小應(yīng)該相同,中間的第2列應(yīng)該盡可能占據(jù)更多的空間。
我嘗試了什么:
grid-template-columns: 1fr auto 1fr; // This way, col 2 tries to take as little space as possible
grid-template-columns: auto 1fr auto; // This way, col 1 and 3 are not the same size
我想要3列。第1列和第3列的大小應(yīng)該相同,中間的第2列應(yīng)該盡可能占據(jù)更多的空間。
我嘗試了什么:
grid-template-columns: 1fr auto 1fr; // This way, col 2 tries to take as little space as possible
grid-template-columns: auto 1fr auto; // This way, col 1 and 3 are not the same size