回答:
あなたが探している可能性があります
-webkit-appearance: none;
-webkit-appearance
-moz-appearance
@include experimental(appearance, none);
<select>
ボックスの場合、デスクトップブラウザでは矢印が表示されないことです。したがって、これはメディアクエリと組み合わせるのが最適だと思います。
私は最近この問題に出くわしました。
<!--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!" />