ie width: fit-content、max-content不适配

jia-zq / 2023-05-11 / 原文

在ie下,设置width: max-content、fit-content不适配
width: max-content;改为:

width: auto;
white-space: nowrap;

width: fit-content修改父元素display: flex,然后改为width: auto;