답변:
이 CSS 스타일을 추가하면 :
-webkit-appearance: none;
textarea, input[type="text"], input[type="submit"]
입니다.
input[type="password"]
.
[type="email"]
!
input:not([type=checkbox]):not([type=radio])
CSS 스타일을 추가하는 동안
-webkit-appearance: none;
작동합니다. 모든 것을 제거합니다. 대신 이것을 시도 할 수 있습니다 :
box-shadow: none !important;
이렇게하면 아래쪽 화살표를 유지할 수 있습니다.
https://stackoverflow.com/a/51626446/9287284
background-clip: padding-box;
나는 여기에서 더 오래된 동일한 답변 의견을 발견했습니다.
태그 의 background
및 border
CSS 속성 중 하나 를 설정해 input
도 작동하는 것 같습니다.
이 시도:
<style>
input {
background: #ccc;
border: none;
}
</style>
<form>
First name: <input type="text"/><br />
Last name: <input type="text" />
</form>