1:flex弹性盒子水平居中对齐
.center{
display: flex;
justify-content: center;
align-items: center;
}
2:怎么让一行文字显示不下会出现省略号
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
1:flex弹性盒子水平居中对齐
.center{
display: flex;
justify-content: center;
align-items: center;
}
2:怎么让一行文字显示不下会出现省略号
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;