编辑
2022-03-26
前端技术
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-26
前端技术
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 层叠样式表

编辑
2022-03-21
DevOps
00

自从切换到 nginx-proxy-manager 之后,发现在家里用的时候对于某些服务会丢端口。

因为家里外网不给 80 端口,一直用的 8443。

折腾了一番发现可以追加协议:

proxy_set_header Host $host:$server_port;

因为我在路由器开了端口转发,所以强制制定了 8443 端口:

proxy_set_header Host $host:8443;