Styling input buttons for iPad and iPhone

前端 未结 6 1324
一个人的身影
一个人的身影 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:23

    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!

提交回复
热议问题