Turn off iPhone/Safari input element rounding

前端 未结 11 1227
时光取名叫无心
时光取名叫无心 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 17:54

    For me on iOS 5.1.1 on a iPhone 3GS I had to clear the styling of a search field and the set it to the style intended

    input[type="search"] {-webkit-appearance: none; border-radius: 0 3px 3px 0;}
    

    Doing -webkit-border-radius: 0; alone did not clear the native styling. This was also for a webview on a native app.

提交回复
热议问题