CSS submit button weird rendering on iPad/iPhone

后端 未结 3 728
青春惊慌失措
青春惊慌失措 2020-11-28 18:06

I noticed that if I style my buttons with CSS using radius, colors and borders, they look good but in the iphone/ipad/ipod they look terrible...shouldn\'t be the same render

3条回答
  •  孤城傲影
    2020-11-28 18:29

    The above answer for webkit appearance worked, but the button still looked kind pale/dull compared to the browser on other devices/desktop. I also had to set opacity to full (ranges from 0 to 1)

    -webkit-appearance:none;
    opacity: 1
    

    After setting the opacity, the button looked the same on all the different devices/emulator/desktop.

提交回复
热议问题