在iOS上,输入框默认有内部阴影,但无法使用 box-shadow 来清除,如果不需要阴影,可以这样关闭: input, textarea { border: 0; /* 方法1 */ -webkit-appearance: none; /* 方法2 */ }
0