css-电脑端点击元素后会存在一个竖线,解决办法如下

发布时间 2024-01-04 14:25:47作者: MiniDuck

 

 css的解决办法:

* {
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select:none
}