2022-03-27
前端技术
00
css
.fathor { display: flex; } .son1{ flex: 1; overflow: hidden;}

其他参考

2022-03-27
前端技术
00
css
.demo::-webkit-scrollbar { display: none; /* Chrome Safari */ } .demo { scrollbar-width: none; /* firefox */ -ms-overflow-style: none; /* IE 10+ */ overflow-x: hidden; overflow-y: auto; }
2022-03-27
前端技术
00
css
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
2022-03-26
前端技术
00

需要使用 fill: #fff 才行,colorbackground 是没用的。

2022-03-26
前端技术
00

可以使用:

css
filter: grayscale(50%);

具体可以参考 MDN filter - CSS 层叠样式表