I\'m using CSS to style the input buttons on my website, but on IOS devices the styling is replaced by Mac\'s default buttons. Is there a way to style buttons for iOS, or a
Use the below 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; }
iOS Styled Button! No More Style! Button!