Answers:
@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!" />