aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_focus/index.html
blob: 6d0fb0aac586302c4b90333fcfb3a88514da1f5b (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
68
69
70
71
72
73
74
75
76
77
78
79
---
title: ':focus'
slug: 'Web/CSS/:focus'
tags:
  - CSS
  - CSS Pseudoklasse
  - Layout
  - Referenz
  - Selektoren
  - Web
translation_of: 'Web/CSS/:focus'
---
<div>{{CSSRef}}</div>

<h2 id="Übersicht">Übersicht</h2>

<p>Die <a href="/de/docs/Web/CSS">CSS </a><a href="/de/docs/Web/CSS/Pseudo-classes" title="Pseudo-classes">Pseudoklasse</a> <code>:focus</code> steht für Elemente, welche mit einem Eingabegerät, wie z. B. der Tastatur, fokusiert wurden.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox"><var>element</var>:focus { ... }</pre>

<h2 id="Beispiele">Beispiele</h2>

<pre class="brush: css">.first-name:focus {
  color: red;
}

.last-name:focus {
  color: lime;
}</pre>

<pre class="brush: html">&lt;input class="first-name" value="Dieser Text wird rot, wenn das Textfeld den Fokus erhält"&gt;
&lt;input class="last-name" value="Dieser Text wird grün, wenn das Textfeld den Fokus erhält"&gt;</pre>

<p>{{EmbedLiveSample('Beispiele', '100%', 40)}}</p>

<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', '#focus-pseudo', ':focus')}}</td>
   <td>{{Spec2('CSS4 Selectors')}}</td>
   <td>Keine Änderung</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Selectors', '#the-user-action-pseudo-classes-hover-act', ':focus')}}</td>
   <td>{{Spec2('CSS3 Selectors')}}</td>
   <td>Keine Änderung</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS2.1', 'selector.html#dynamic-pseudo-classes', ':focus')}}</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.selectors.focus")}}</p>

<h2 id="Siehe_auch">Siehe auch</h2>

<p> </p>

<ul>
 <li>{{cssxref(":focus-within")}}</li>
</ul>

<p> </p>