जवाबों:
आप ढूंढ रहे होंगे
-webkit-appearance: none;
-webkit-appearance
-moz-appearance
@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-->
उम्मीद है की वो मदद करदे।
नीचे दिए गए सीएसएस का उपयोग करें
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!" />
-वेबकिट-उपस्थिति: कोई नहीं;
नोट: बटन को स्टाइल करने के लिए बूटस्ट्रैप का उपयोग करें। उत्तरदायी के लिए सामान्य।
मेरे पास आज भी यही मुद्दा था कि प्राइमफेस (प्राइमेंग) और कोणीय 7. का उपयोग करके अपनी शैली में निम्नलिखित जोड़ें
p-button {
-webkit-appearance: none !important;
}
मैं भी बूटस्ट्रैप का एक बिट का उपयोग कर रहा हूं, जिसमें एक रिबूट है। एसएमएस, जो इसे ओवरराइड करता है (यही कारण है कि इसे जोड़ना पड़ा!)
button {
-webkit-appearance: button;
}