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 website.
Is there a way to instruct Safari (via CSS or metadata) not to round the input fields and render them rectangular as intended?
-webkit-appearance: none;
, I think better to limit this condition to the scope of a specific input element. Otherwise it can to hide radio input elements if you have them on the page. – quas