You are here: Reference > CSS > properties > ime-mode

ime-mode property

Browser support:
3
Specifies the state of an Input Method Editor (IME) for user text entry fields. IME allows users to enter and edit Chinese, Japanese, and Korean characters.
Note: The ime-mode property is supported in Firefox from version 3.
JavaScript page for this property: imeMode. You can find other example(s) there.

Possible values:

 One of the following values: 
active
All characters are entered through the IME by default.
auto
Default. No change is made to the current IME entry mode.
disabled
Deactivates IME, user may manually activate the IME.
inactive
All characters are entered without IME.
Default: auto.

Example HTML code 1:

This example illustrates the use of the ime-mode property:
<head>
    <style>
        .example {
            ime-mode: active;
        }
    </style>
</head>
<body>
    <input class="example" type="text" />
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content