Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Styling input buttons for iPad and iPhone

Tags:

css

ios

iphone

ipad

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 way to maybe make a hyperlink that behaves like a submit button?

like image 431
mheavers Avatar asked Mar 27 '11 13:03

mheavers


1 Answers

You may be looking for

-webkit-appearance: none; 
  • Safari CSS notes on -webkit-appearance
  • Mozilla Developer Network's -moz-appearance
like image 159
Jonas G. Drange Avatar answered Sep 24 '22 22:09

Jonas G. Drange