blob: d919a97c587d36339652ab8005cb1b8876f25e4f (
plain)
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
|
---
title: any-pointer
slug: Web/CSS/@media/any-pointer
tags:
- CSS
- NeedsBrowserCompatibility
- NeedsExample
- Referenz
translation_of: Web/CSS/@media/any-pointer
---
{{cssref}}
<p><strong><code>any-pointer</code></strong> ist ein CSS Media Feature, das dazu verwendet werden kann, um zu prüfen, ob irgendein verfügbarer Eingabemechanismus ein Zeigegerät ist, und falls ja, wie genau es ist.</p>
<h2 id="Aufgezählte_Werte">Aufgezählte Werte</h2>
<table>
<thead>
<tr>
<th>Wert</th>
<th>Bedeutung</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>none</code></td>
<td>Das Gerät verfügt nicht über ein Zeigegerät.</td>
</tr>
<tr>
<td><code>coarse</code></td>
<td>Mindestens ein Eingabemechanismus des Geräts verfügt über ein Zeigegerät von begrenzter Genauigkeit.</td>
</tr>
<tr>
<td><code>fine</code></td>
<td>Mindestens ein Eingabemechanismus des Geräts verfügt über ein Zeigegerät von präziser Genauigkeit.</td>
</tr>
</tbody>
</table>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS4 Media Queries', '#descdef-media-any-pointer', 'any-pointer')}}</td>
<td>{{Spec2('CSS4 Media Queries')}}</td>
<td>Added in Media Queries Level 4</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.at-rules.media.any-pointer")}}
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li><a href="/de/docs/Web/CSS/@media/pointer">das <code>pointer</code> Media Feature</a></li>
</ul>
|