답변:
@include experimental(appearance, none);
<select>
상자의 경우 데스크탑 브라우저에서 화살표를 표시하지 않는다는 것입니다. 그래서 이것은 내가 생각하는 미디어 쿼리와 가장 잘 어울립니다.
이 CSS 코드를 추가하십시오
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
나는 최근 에이 문제를 직접 만났다.
<!--Instead of using input-->
<input type="submit"/>
<!--Use button-->
<button type="submit">
<!--You can then attach your custom CSS to the button-->
희망이 도움이됩니다.
아래 CSS를 사용하십시오
input[type="submit"] {
font-size: 20px;
background: pink;
border: none;
padding: 10px 20px;
}
.flat-btn {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0;
}
h2 {
margin: 25px 0 10px;
font-size: 20px;
}
<h2>iOS Styled Button!</h2>
<input type="submit" value="iOS Styled Button!" />
<h2>No More Style! Button!</h2>
<input class="flat-btn" type="submit" value="No More Style! Button!" />