Styling input buttons for iPad and iPhone

前端 未结 6 1326
一个人的身影
一个人的身影 2020-11-28 00:49

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

6条回答
  •  臣服心动
    2020-11-28 01:20

    I had the same issue today using primefaces (primeng) and angular 7. Add the following to your style.css

    p-button {
       -webkit-appearance: none !important;
    }
    

    i am also using a bit of bootstrap which has a reboot.css, that overrides it with (thats why i had to add !important)

    button {
      -webkit-appearance: button;
    

    }

提交回复
热议问题