Home > Article > Web Front-end > How to hide the cursor in css input
In CSS, you can use the caret-color attribute to set the color of the cursor in the input to be transparent, thereby achieving the effect of hiding the cursor. The syntax is "input{caret-color:transparent;}".
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
In the project, I encountered a requirement to hide the cursor of the input box, but also have the input function. How to do this?
It's actually very simple. You just need to use the caret-color attribute to set the color of the cursor in the input to transparent.
<input type="text" /> input{ caret-color:transparent; }
Description: The
caret-color attribute specifies the color of the cursor (caret) in inputs, textareas, or any editable element.
Syntax:
caret-color: auto|color;
auto: Default. Browsers use currentColor for the caret.
#color: Specifies the color used for the caret. All legal color values can be used (rgb, hex, named colors, etc.).
(Learning video sharing: css video tutorial)
The above is the detailed content of How to hide the cursor in css input. For more information, please follow other related articles on the PHP Chinese website!