Turn off iPhone/Safari input element rounding

On iOS 5 and later: input { border-radius: 0; } input[type=”search”] { -webkit-appearance: none; } If you must only remove the rounded corners on iOS or otherwise for some reason cannot normalize rounded corners across platforms, use input { -webkit-border-radius: 0; } property instead, which is still supported. Of course do note that Apple can … Read more