You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: css-ui-4/Overview.bs
+70-51
Original file line number
Diff line number
Diff line change
@@ -1079,26 +1079,57 @@ Cursor of the canvas</h5>
1079
1079
<h3 id="insertion-caret">
1080
1080
Insertion caret</h3>
1081
1081
1082
+
The <dfn lt="insertion caret|caret">insertion caret</dfn> (or “caret” for short)
1083
+
is a visible indicator of the insertion point in an element that [=accepts input=],
1084
+
where text (and potentially other content) can be inserted by the user.
1085
+
The 'caret-color', 'caret-animation', and 'caret-shape' properties
1086
+
give the author some amount of control over the appearance of the [=caret=].
1087
+
1088
+
Elements are considered to <dfn>accept input</dfn>
1089
+
if they are either an [=editable element=] or a descendent thereof,
1090
+
excluding any such element where the [=used value=] of 'user-select' is ''user-select/none'',
1091
+
as well as subtrees rooted at an HTML element with a {{ElementContentEditable/contentEditable}} attribute set to {{ElementContentEditable/contentEditable/false}}.
1092
+
1093
+
Some user agents have other user interface mechanisms
1094
+
with a similar appearance,
1095
+
also occasionally referred to as “carets”.
1096
+
For example, some UAs can show a “navigation caret”,
1097
+
which acts similarly to an [insertion caret=]
1098
+
but can be moved around in non-editable text.
1099
+
The 'caret-color', 'caret-animation', and 'caret-shape' properties
1100
+
are not intended to apply to such mechanisms
1101
+
nor outside of [=editable elements=],
1102
+
though user agents may choose to take them into account.
1103
+
Whether to do so and to what extend is up to the user agent.
1104
+
1105
+
Note: The cursor image shown
1106
+
when hovering over text when the 'cursor' property is ''cursor/auto'',
1107
+
or when hovering over an element where the 'cursor' property is ''cursor/text'' or ''cursor/vertical-text'',
1108
+
though it sometimes resembles a caret,
1109
+
is not a caret (it's a cursor).
1110
+
1082
1111
<h4 id="caret-color" caniuse="css-caret-color">
1083
1112
Coloring the Insertion Caret: the 'caret-color' property</h4>
1084
1113
1085
1114
<pre class="propdef">
1086
1115
Name: caret-color
1087
1116
Value: auto | <<color>>
1088
1117
Initial: auto
1089
-
Applies to: all elements
1118
+
Applies to: elements that [=accept input=]
1090
1119
Inherited: yes
1091
1120
Percentages: N/A
1092
1121
Computed value: The computed value for ''caret-color/auto'' is ''caret-color/auto''.
1093
1122
For <<color>> values, see [[CSS-COLOR-4#resolving-color-values]].
1094
1123
Animation Type: by computed value
1095
1124
</pre>
1096
1125
1126
+
This property controls the color of the [=insertion caret=].
1127
+
1097
1128
<dl>
1098
1129
<dt>auto
1099
1130
<dd>
1100
1131
User agents should use ''currentColor''.
1101
-
User agents may automatically adjust the color of caret
1132
+
User agents may automatically adjust the color of [=caret=]
1102
1133
to ensure good visibility and contrast with the surrounding content,
1103
1134
possibly based on the currentColor, background, shadows, etc.
1104
1135
@@ -1108,21 +1139,9 @@ Coloring the Insertion Caret: the 'caret-color' property</h4>
1108
1139
1109
1140
<dt><<color>>
1110
1141
<dd>
1111
-
The insertion caret is colored with the specified color.
1142
+
The [=caret=] is colored with the specified color.
1112
1143
</dl>
1113
1144
1114
-
The caret is a visible indicator of the insertion point in an element where text (and potentially other content) is inserted by the user. This property controls the color of that visible indicator.
1115
-
1116
-
Note: UAs might have additional things that count as “carets”.
1117
-
For example, some UAs can show a “navigation caret”,
1118
-
which acts similarly to an insertion caret
1119
-
but can be moved around in non-editable text
1120
-
and is functionally a caret.
1121
-
On the other hand, the cursor image shown
1122
-
when hovering over text when the 'cursor' property is ''cursor/auto'',
1123
-
or when hovering over an element where the 'cursor' property is ''cursor/text'' or ''cursor/vertical-text'',
1124
-
though it sometimes resembles a caret, is not a caret (it's a cursor).
0 commit comments