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
|
---
title: ':active'
slug: 'Web/CSS/:active'
tags:
- CSS
- CSS Pseudoklasse
- Layout
- Referenz
- Web
translation_of: 'Web/CSS/:active'
---
<div>{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <a href="/en-US/docs/CSS/Pseudo-classes" title="Pseudo-classes">Pseudoklasse</a> <code>:active</code> entspricht jedem Element, das vom Benutzer aktiviert wurde. Beim Mauszeiger ist das die Zeitspanne, wo die Taste gedrückt gehalten wird. Deshalb wird sie meistens bei den Elementen {{HTMLElement("a")}} und {{HTMLElement("button")}} Eingesetzt, kann aber auch für jedes andere Element genutzt werden.</p>
<p>Die Stile können von weiteren Pseudoklassen überschrieben werden: {{cssxref(":link")}}, {{cssxref(":hover")}} und {{cssxref(":visited")}}. Deshalb ist es wichtig, die <em>LVHA-Reihenfolge</em> einzuhalten: <code>:link</code> — <code>:visited</code> — <code>:hover</code> — <code>:active</code>.</p>
<div class="note"><strong>Hinweis:</strong> Auf Systemen mit Mäusen mit mehreren Knöpfen, definiert CSS 3, dass die <code>:active</code> Pseudoklasse nur dem Hauptknopf zugewiesen wird; bei Mäusen für Rechtshänder ist dies typischerweise der linkeste Knopf.</div>
<h2 id="Beispiel">Beispiel</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html; highlight:[3]"><body>
<h1>:active CSS selector example</h1>
<p>The following link will turn lime during the time you click it and release the click: <a href="#">Mozilla Developer Network</a>.</p>
</body></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css; highlight:[5]">body { background-color: #ffffc9 }
a:link { color: blue } /* unbesuchte Links */
a:visited { color: purple } /* besuchte Links*/
a:hover { font-weight: bold } /* Benutzer fährt mit der Maus darüber */
a:active { color: lime } /* aktive Links */
</pre>
<div>{{EmbedLiveSample('Beispiel', 600, 140)}}</div>
<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('CSS4 Selectors', '#active-pseudo', ':active')}}</td>
<td>{{Spec2('CSS4 Selectors')}}</td>
<td>Keine Änderung</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Selectors', '#useraction-pseudos', ':active')}}</td>
<td>{{Spec2('CSS3 Selectors')}}</td>
<td>Keine Änderung</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'selector.html#dynamic-pseudo-classes', ':active')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Keine Änderung</td>
</tr>
<tr>
<td>{{SpecName('CSS1', '#anchor-pseudo-classes', ':active')}}</td>
<td>{{Spec2('CSS1')}}</td>
<td>Standard Wert definiert</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.selectors.active")}}
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>Weitere Link-Pseudoklassen: {{cssxref(":link")}}, {{cssxref(":visited")}} und {{cssxref(":hover")}}.</li>
</ul>
|