aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/class_selectors/index.html
blob: 1fe57508558e36ab6ea72cdba3fe24bd650969bb (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
---
title: Klassenselektoren
slug: Web/CSS/Class_selectors
tags:
  - CSS
  - CSS Referenz
  - Einsteiger
  - Selektoren
translation_of: Web/CSS/Class_selectors
original_slug: Web/CSS/Klassenselektoren
---
<div>{{CSSRef("Selectors")}}</div>

<p>In einem HTML Dokument matchen CSS Klassenselektoren ein Element basierend auf den Inhalten des {{htmlattrxref("class")}} Attributs des Elements. Das class Attribut ist definiert als eine durch Leerzeichen getrennte Liste von Einträgen, wobei einer dieser Einträge exakt auf den Klassennamen des angegebenen Selektors passen muss.</p>

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

<pre class="syntaxbox">.classname { <em>style properties</em> }</pre>

<p>Beachte, dass dies äquivalent zu folgendem {{cssxref("Attributselektoren", "Attributselektor")}} ist:</p>

<pre class="syntaxbox">[class~=classname] { <em>style properties</em> }</pre>

<h2 id="Beispiel">Beispiel</h2>

<h3 id="CSS">CSS</h3>

<pre class="brush: css">span.classy {
  background-color: DodgerBlue;
}
</pre>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;span class="classy"&gt;Hier ist ein Span mit Text.&lt;/span&gt;
&lt;span&gt;Hier ist ein weiterer.&lt;/span&gt;
</pre>

<p>{{EmbedLiveSample('Beispiel', 200, 50)}}</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', '#class-html', 'class selectors')}}</td>
   <td>{{Spec2('CSS4 Selectors')}}</td>
   <td>Keine Änderungen</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Selectors', '#class-html', 'class selectors')}}</td>
   <td>{{Spec2('CSS3 Selectors')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('CSS2.1', 'selector.html#class-html', 'child selectors')}}</td>
   <td>{{Spec2('CSS2.1')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('CSS1', '#class-as-selector', 'child selectors')}}</td>
   <td>{{Spec2('CSS1')}}</td>
   <td>Ursprüngliche Definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>

{{Compat("css.selectors.class")}}