Odpowiedzi:
Być może szukasz
-webkit-appearance: none;
-webkit-appearance
-moz-appearance
@include experimental(appearance, none);
<select>
pudełek nie wyświetla strzałki w przeglądarce na pulpicie. Myślę, że najlepiej jest to połączyć z zapytaniem medialnym.
Dodaj ten kod css
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
Ostatnio sam zetknąłem się z tym problemem.
<!--Instead of using input-->
<input type="submit"/>
<!--Use button-->
<button type="submit">
<!--You can then attach your custom CSS to the button-->
Mam nadzieję, że to pomaga.
Użyj poniższego 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!" />
-webkit-wygląd: brak;
Uwaga: użyj stylu bootstrap, aby stylizować przycisk.
Ten sam problem miałem dzisiaj przy użyciu primefaces (primeng) i kątowej 7. Dodaj następujące elementy do swojego style.css
p-button {
-webkit-appearance: none !important;
}
używam również trochę bootstrap, który ma reboot.css, który zastępuje go (dlatego musiałem dodać! ważne)
button {
-webkit-appearance: button;
}