I have a grid with 3 columns. The problem is that the 3rd column is wider than the other two columns. Neither
grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
nor
grid-auto-columns: 33%;
work, because auto-fit and grid-auto-columns aren't supported in IE11.
Is there an alternative way to achieve that in IE11? Thanks.
