1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
|
---
title: cursor
slug: Web/CSS/cursor
tags:
- CSS
- CSS Eigenschaft
- Cursor
- NeedsBrowserCompatibility
- NeedsMobileBrowserCompatibility
- Referenz
translation_of: Web/CSS/cursor
---
<div>{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>cursor</code> CSS Eigenschaft legt den Cursor fest, der angezeigt wird, wenn sich der Mauszeiger über einem Element befindet.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="brush:css notranslate">/* Schlüsselwortwerte */
cursor: pointer;
cursor: auto;
/* Verwendung von URL und Koordinaten */
cursor: url(cursor1.png) 4 12, auto;
cursor: url(cursor2.png) 2 2, pointer;
/* Globale Werte */
cursor: inherit;
cursor: initial;
cursor: unset;
</pre>
<h2 id="Werte">Werte</h2>
<dl>
<dt><uri></dt>
<dd>Eine durch Kommata getrennte Liste, die auf benutzerdefinierte Bilder verweist, die als Cursor angezeigt werden sollen. Mehr als eine Angabe macht Sinn, um eine Ausweichlösung (Fallback) bei nicht unterstützten Bildformaten in anderen Browsern bereitzustellen. Am Ende der Liste <strong>muss</strong> ein Fallback stehen, welches einen Cursor ohne URL angibt, um einen Mauszeiger anzeigen zu können, wenn kein benutzerdefiniertes Bild geladen werden kann. Siehe auch: <a href="/de/Verwendung_von_URL_Werten_für_die_cursor_Eigenschaft" title="de/Verwendung_von_URL_Werten_für_die_cursor_Eigenschaft">Verwendung von URL Werten für die cursor Eigenschaft</a> für weitere Details.</dd>
<dt><x> <y> {{ experimental_inline() }}</dt>
<dd>Optionale Angabe von X- und Y-Koordinaten (vom Internet Explorer nicht unterstützt). Angegeben werden zwei Zahlen ohne Einheit.</dd>
<dt>Schlüsselwortwerte</dt>
<dd><strong style="color: red; font-size: big;">Bewege die Maus über einen Wert zum Testen:</strong></dd>
<dd>
<table class="standard-table">
<tbody>
<tr>
<th>Kategorie</th>
<th>CSS Wert<br>
<span style="font-size: x-small;">Mouseover zum Testen</span></th>
<th></th>
<th>Beschreibung</th>
</tr>
<tr style="cursor: auto;">
<td rowspan="3">Allgemein</td>
<td><code>auto</code></td>
<td></td>
<td>Der Browser bestimmt aufgrund des aktuellen Kontextes, welcher Cursor angezeigt wird.<br>
Wenn der Mauszeiger sich zum Beispiel über dem Text befindet, wird der <code>text</code> Cursor angezeigt.</td>
</tr>
<tr style="cursor: default;">
<td><code>default</code></td>
<td><img alt="default.gif" class="default internal" src="/@api/deki/files/3438/=default.gif"></td>
<td>Standard Cursor. Üblicherweise durch ein Pfeil dargestellt.</td>
</tr>
<tr style="cursor: none;">
<td><code>none</code></td>
<td></td>
<td>Es wird kein Cursor wird angezeigt.</td>
</tr>
<tr style="cursor: context-menu;">
<td rowspan="5" style="cursor: auto;">Links & Status</td>
<td><code>context-menu</code></td>
<td><img alt="context-menu.png" class="default internal" src="/@api/deki/files/3461/=context-menu.png"></td>
<td>Ein Kontextmenü wird unter dem Cursor angezeigt.<br>
Unter Windows nicht verfügbar. {{ Bug("258960") }}</td>
</tr>
<tr style="cursor: help;">
<td><code>help</code></td>
<td><img alt="help.gif" class="default internal" src="/@api/deki/files/3442/=help.gif"></td>
<td>Zeigt an, dass Hilfe verfügbar ist.</td>
</tr>
<tr style="cursor: pointer;">
<td><code>pointer</code></td>
<td><img alt="pointer.gif" class="default internal" src="/@api/deki/files/3449/=pointer.gif"></td>
<td>Wird zum Beispiel angezeigt, wenn der Mauszeiger sich über Links befindet. Üblicherweise durch eine Hand dargestellt.</td>
</tr>
<tr style="cursor: progress;">
<td><code>progress</code></td>
<td><img alt="progress.gif" class="default internal" src="/@api/deki/files/3450/=progress.gif"></td>
<td>Zeigt an, dass das Programm im Hintergrund arbeitet und der Benutzer kann, anders als bei <code>wait</code>, weiterhin mit der Oberfläche arbeiten.</td>
</tr>
<tr style="cursor: wait;">
<td><code>wait</code></td>
<td><img alt="wait.gif" class="default internal" src="/@api/deki/files/3457/=wait.gif"></td>
<td>Zeigt an, dass das Programm arbeitet. Manchmal auch durch eine Sanduhr oder eine Uhr dargestellt.</td>
</tr>
<tr style="cursor: cell;">
<td rowspan="4" style="cursor: auto;">Auswahl</td>
<td><code>cell</code></td>
<td><img alt="cell.gif" class="default internal" src="/@api/deki/files/3434/=cell.gif"></td>
<td>Zeigt an, dass Zellen ausgewählt werden können.</td>
</tr>
<tr style="cursor: crosshair;">
<td><code>crosshair</code></td>
<td><img alt="crosshair.gif" class="default internal" src="/@api/deki/files/3437/=crosshair.gif"></td>
<td>Ein Kreuz, das oft zur Auswahl eines Bereiches in Bildern verwendet wird.</td>
</tr>
<tr style="cursor: text;">
<td><code>text</code></td>
<td><img alt="text.gif" class="default internal" src="https://developer.mozilla.org/files/3809/text.gif"></td>
<td>Zeigt an, dass der Text ausgewählt werden kann.</td>
</tr>
<tr style="cursor: vertical-text;">
<td><code>vertical-text</code></td>
<td><img alt="vertical-text.gif" class="default internal" src="/@api/deki/files/3456/=vertical-text.gif"></td>
<td>Zeigt an, dass vertikaler Text ausgewählt werden kann.</td>
</tr>
<tr style="cursor: alias;">
<td rowspan="5" style="cursor: auto;">Drag and Drop</td>
<td><code>alias</code></td>
<td><img alt="alias.gif" class="default internal" src="/@api/deki/files/3432/=alias.gif"></td>
<td>Zeigt an, dass ein Tastenkürzel vorhanden ist.</td>
</tr>
<tr style="cursor: copy;">
<td><code>copy</code></td>
<td><img alt="copy.gif" class="default internal" src="/@api/deki/files/3436/=copy.gif"></td>
<td>Zeigt an, dass etwas kopiert werden kann.</td>
</tr>
<tr style="cursor: move;">
<td><code>move</code></td>
<td><img alt="move.gif" class="default internal" src="/@api/deki/files/3443/=move.gif"></td>
<td>Zeigt an, dass das Objekt bewegt werden kann.</td>
</tr>
<tr style="cursor: no-drop;">
<td><code>no-drop</code></td>
<td><img alt="no-drop.gif" class="internal lwrap" src="/@api/deki/files/3445/=no-drop.gif" style="float: left;"></td>
<td>Zeigt an, dass an der aktuellen Stelle nichts hinein gezogen werden darf.<br>
{{bug("275173")}} unter Windows ist <code>no-drop</code> gleich wie <code>not-allowed</code>.</td>
</tr>
<tr style="cursor: not-allowed;">
<td><code>not-allowed</code></td>
<td><img alt="not-allowed.gif" class="default internal" src="/@api/deki/files/3446/=not-allowed.gif"></td>
<td>Zeigt an, dass hier etwas nicht erlaubt ist.</td>
</tr>
<tr style="cursor: all-scroll;">
<td rowspan="15" style="cursor: auto;">Skalierung & Scrollen</td>
<td><code>all-scroll</code></td>
<td><img alt="all-scroll.gif" class="default internal" src="/@api/deki/files/3433/=all-scroll.gif"></td>
<td>Zeigt an, dass etwas in alle Richtungen gescrollt werden kann.<br>
{{ bug("275174") }} unter Windows ist <code>all-scroll</code> gleich wie <code>move</code>.</td>
</tr>
<tr style="cursor: col-resize;">
<td><code>col-resize</code></td>
<td><img alt="col-resize.gif" class="default internal" src="/@api/deki/files/3435/=col-resize.gif"></td>
<td>Zeigt an, dass das Element bzw. die Spalte horizontal skaliert werden kann. Meistens als Pfeile dargestellt, die nach rechts und links zeigen und in der Mitte einen Trennbalken haben.</td>
</tr>
<tr style="cursor: row-resize;">
<td><code>row-resize</code></td>
<td><img alt="row-resize.gif" class="default internal" src="/@api/deki/files/3451/=row-resize.gif"></td>
<td>Zeigt an, dass das Element bzw. die Zeile vertikal skaliert werden kann. Meistens als Pfeile dargestellt, die nach unten und oben zeigen und in der Mitte einen Trennbalken haben.</td>
</tr>
<tr style="cursor: n-resize;">
<td><code>n-resize</code></td>
<td><img alt="n-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4083/n-resize.gif"></td>
<td rowspan="8">Zeigt an, dass von einer Ecke aus skaliert werden kann. Der <code>se-resize</code> Cursor wird zum Beispiel benutzt, wenn, von der unteren rechten Ecke aus, etwas bewegt/skaliert werden soll.</td>
</tr>
<tr style="cursor: e-resize;">
<td><code>e-resize</code></td>
<td><img alt="e-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4085/e-resize.gif"></td>
</tr>
<tr style="cursor: s-resize;">
<td><code>s-resize</code></td>
<td><img alt="s-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4087/s-resize.gif"></td>
</tr>
<tr style="cursor: w-resize;">
<td><code>w-resize</code></td>
<td><img alt="w-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4089/w-resize.gif"></td>
</tr>
<tr style="cursor: ne-resize;">
<td><code>ne-resize</code></td>
<td><img alt="ne-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4091/ne-resize.gif"></td>
</tr>
<tr style="cursor: nw-resize;">
<td><code>nw-resize</code></td>
<td><img alt="nw-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4093/nw-resize.gif"></td>
</tr>
<tr style="cursor: se-resize;">
<td><code>se-resize</code></td>
<td><img alt="se-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4097/se-resize.gif"></td>
</tr>
<tr style="cursor: sw-resize;">
<td><code>sw-resize</code></td>
<td><img alt="sw-resize.gif" class="default internal" src="https://developer.mozilla.org/files/4095/sw-resize.gif"></td>
</tr>
<tr style="cursor: ew-resize;">
<td><code>ew-resize</code></td>
<td><img alt="ew-resize.gif" class="default internal" src="https://developer.mozilla.org/files/3806/3-resize.gif"></td>
<td rowspan="4">Zeigt an, dass in zwei Richtungen (bidirektional) skaliert werden kann.</td>
</tr>
<tr style="cursor: ns-resize;">
<td><code>ns-resize</code></td>
<td><img alt="ns-resize.gif" class="default internal" src="https://developer.mozilla.org/files/3808/6-resize.gif"></td>
</tr>
<tr style="cursor: nesw-resize;">
<td><code>nesw-resize</code></td>
<td><img alt="nesw-resize.gif" class="default internal" src="https://developer.mozilla.org/files/3805/1-resize.gif" style="height: 26px; width: 26px;"></td>
</tr>
<tr style="cursor: nwse-resize;">
<td><code>nwse-resize</code></td>
<td><img alt="nwse-resize.gif" class="default internal" src="https://developer.mozilla.org/files/3807/4-resize.gif"></td>
</tr>
<tr style="cursor: zoom-in;">
<td rowspan="2">Zoom</td>
<td><code>zoom-in</code></td>
<td><img alt="zoom-in.gif" class="default" src="/@api/deki/files/3459/=zoom-in.gif"></td>
<td rowspan="2" style="cursor: auto;">
<p>Indicates that something can be zoomed (magnified) in or out.</p>
</td>
</tr>
<tr style="cursor: zoom-out;">
<td><code>zoom-out</code></td>
<td><img alt="zoom-out.gif" class="default" src="/@api/deki/files/3460/=zoom-out.gif"></td>
</tr>
<tr id="grab" style="cursor: grab;">
<td rowspan="2">Greifen</td>
<td><code>grab</code></td>
<td><img alt="grab.gif" class="default" src="/@api/deki/files/3440/=grab.gif"></td>
<td rowspan="2" style="cursor: auto;">
<p>Indicates that something can be grabbed (dragged to be moved).</p>
</td>
</tr>
<tr style="cursor: grabbing;">
<td><code>grabbing</code></td>
<td><img alt="grabbing.gif" class="default" src="/@api/deki/files/3441/=grabbing.gif"></td>
</tr>
</tbody>
</table>
</dd>
</dl>
<h3 id="Formale_Syntax">Formale Syntax</h3>
{{csssyntax}}
<h2 id="Beispiele">Beispiele</h2>
<pre class="notranslate">.foo {
cursor: crosshair;
}
/* Benutze move wenn cell nicht unterstützt wird. */
.bar {
cursor: move;
cursor: cell;
}
/* Standardwert als Fallback für url() muss angegeben werden (funktioniert nicht ohne) */
.baz {
cursor: url(hyper.cur), auto;
}
</pre>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Basic UI', '#cursor', 'cursor')}}</td>
<td>{{Spec2('CSS3 Basic UI')}}</td>
<td>Mehrere Schlüsselwörter und die Positionierungssyntax für <code>url()</code> hinzugefügt.</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'ui.html#cursor-props', 'cursor')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
<p>{{Compat("css.properties.cursor")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li><a href="/en-US/docs/CSS/Using_URL_values_for_the_cursor_property" title="Using URL values for the cursor property">Using URL values for the cursor property (en)</a></li>
<li>{{cssxref("pointer-events")}}</li>
</ul>
|