html css flex 超出隐藏处理
/\* 第三个元素不缩小,优先显示 \*/
.flex-item:nth-child(3) {flex: 0 0 auto;
}
/\* 前两个元素允许缩小,超出隐藏 \*/
.flex-item:nth-child(1),
.flex-item:nth-child(2) {flex: 1 1 auto;overflow: hidden;white-space: nowrap;text-overflow: elli…
2026/8/8 11:14:38