How to disable input in html/css

青灯夜游
Release: 2023-01-05 16:12:21
Original
6744 people have browsed it

Methods to disable input: 1. Add the "readonly="readonly"" statement to input; 2. Add the "disabled="disabled"" statement to input; 3. Add "maxlength="0" to input "" statement, set the maximum input length to 0.

How to disable input in html/css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

Input method to prohibit input

1: readonly attribute

readonly specifies that the input field is Read-only and copyable, however, the user can use the Tab key to switch to the field, be selectable, receive focus, and select or copy its text.

<input type="text" value="哈哈哈" readonly="readonly">
Copy after login

2: disabled attribute

disabled The disabled input element can be copied and cannot receive focus. After setting, the color of the text will turn gray. Cannot be used with .

<input type="text" value="哈哈哈" disabled="disabled">
Copy after login

3: maxlength attribute

By controlling the max length of input to 0, the effect of prohibiting input is achieved

<input type="text" maxlength="0">
Copy after login

For more programming-related knowledge, please visit : Programming Video! !

The above is the detailed content of How to disable input in html/css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template