Turn off iPhone/Safari input element rounding

前端 未结 11 1243
时光取名叫无心
时光取名叫无心 2020-11-28 17:06

My website renders well on the iPhone/Safari browser, with one exception: My text input fields have a weird rounded style which doesn\'t look good at all with the rest of my

11条回答
  •  爱一瞬间的悲伤
    2020-11-28 18:06

    It is the best way to remove the rounded in IOS.

    textarea,
    input[type="text"],
    input[type="button"],
    input[type="submit"] {
         -webkit-appearance: none;
         border-radius: 0;
    }
    

    Note: Please don't use this code for the Select Option. It will have problem on our select.

提交回复
热议问题