Home >Web Front-end >CSS Tutorial >How Can I Disable Rounded Input Elements in iPhone/Safari?

How Can I Disable Rounded Input Elements in iPhone/Safari?

Barbara Streisand
Barbara StreisandOriginal
2024-10-30 16:16:26384browse

How Can I Disable Rounded Input Elements in iPhone/Safari?

Disabling Rounded Input Elements in iPhone/Safari

Safari on iOS devices tends to render text input fields with a rounded style, which may not always align with the intended design. To address this issue, here's how to instruct Safari not to round the input fields and render them rectangular:

For iOS 5 and Later:

1. CSS Style:

Use the CSS rule border-radius: 0; to remove the rounded corners on all input fields.

2. WebKit Appearance:

For the search input field specifically, set the -webkit-appearance property to none.

<code class="css">input {
  border-radius: 0;
}

input[type="search"] {
  -webkit-appearance: none;
}</code>

For Legacy Safari Versions:

WebKit Appearance:

In older versions of Safari, use the -webkit-appearance: none property for all input fields to remove the rounded styling.

<code class="css">input {
  -webkit-appearance: none;
}</code>

Note:

  • The -webkit-border-radius: 0; property can be used to target input fields on iOS only, but it may be phased out in the future.
  • The preferred method is to normalize rounded corners across platforms using the standard border-radius property and the -webkit-appearance property for Safari only.

The above is the detailed content of How Can I Disable Rounded Input Elements in iPhone/Safari?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn