aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_focus/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/web/css/_colon_focus/index.html
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/web/css/_colon_focus/index.html')
-rw-r--r--files/de/web/css/_colon_focus/index.html79
1 files changed, 79 insertions, 0 deletions
diff --git a/files/de/web/css/_colon_focus/index.html b/files/de/web/css/_colon_focus/index.html
new file mode 100644
index 0000000000..6d0fb0aac5
--- /dev/null
+++ b/files/de/web/css/_colon_focus/index.html
@@ -0,0 +1,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>