devxlogo

Constrain an HTML Input Box to Uppercase

Constrain an HTML Input Box to Uppercase

The easiest way to constrain an HTML input box to uppercase is to use the STYLE attribute inside the INPUT tag.

Suppose you have the following code:

<input type="text" name="big" style="text-transform:uppercase;">

When you type usd, it will appear on screen as USD, but it will be submitted to the server as usd, since STYLE only affects the appearance, not the original data.Here’s the workaround:

This raises another question: why not remove STYLE and just use the JavaScript? The answer is: You can, but users will see the characters “flash” from lower to upper case as they type, which is irritating.”

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist