htmlcss

The ime-mode property is a non-standard property used in CSS and certain HTML elements. This property controls the state of the input method editor for text fields. It was introduced in IE 5 and Gecko 1.9.


Values


HTML example:

<input type="text" name="name" value="initial value" style="ime-mode:disabled;"> 


CSS example:

input[type=password] {
    ime-mode:auto;
}