blob: 72fa3c0c27fb0d7203f2c580e5ab280a25aca761 (
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
80
81
82
83
84
85
86
|
---
title: quotes
slug: Web/CSS/quotes
tags:
- CSS
- CSS Eigenschaft
- Layout
- Referenz
- Web
translation_of: Web/CSS/quotes
---
<div>{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>quotes</code> <a href="/de/docs/Web/CSS" title="CSS">CSS</a> Eigenschaft gibt an, wie User Agents Anführungszeichen darstellen sollen.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="brush:css">/* Schlüsselwortwert */
quotes: none;
/* <string> Werte */
quotes: "«" "»" /* Setzt <em>open-quote</em> und <em>close-quote</em> auf französische Anführungszeichen */
quotes: "«" "»" "‹" "›" /* Setzt zwei Ebenen von Anführungszeichen */
/* Globale Werte */
quotes: inherit;
quotes: initial;
quotes: unset;
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><code>none</code></dt>
<dd>Die <code>open-quote</code> und <code>close-quote</code> Werte der {{cssxref("content")}} Eigenschaft erzeugen keine Anführungszeichen.</dd>
<dt><code>[<string> <string>]+</code></dt>
<dd>Ein oder mehrere Paare von {{cssxref("<string>")}} Werten für <code>open-quote</code> und <code>close-quote</code>. Das erste Paar stellt die äußere Ebene des Zitats dar, das zweite Paar das erste Unterebene, das nächste die dritte Ebene usw.</dd>
</dl>
<h3 id="Formale_Syntax">Formale Syntax</h3>
{{csssyntax}}
<h2 id="Beispiele">Beispiele</h2>
<pre class="brush:css">q { quotes: '"' '"' "'" "'" }
q:before { content: open-quote }
q:after { content: close-quote }
</pre>
<h2 id="Hinweise">Hinweise</h2>
<p>Seit Firefox 3.5 kann der ursprüngliche Wert der <code>quotes</code> Eigenschaft über <code>-moz-<a class="internal" href="/de/docs/CSS/initial" title="en-US/docs/CSS/initial">initial</a></code> gelesen werden. Dies war in früheren Versionen von Firefox nicht möglich.</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('CSS2.1', 'generate.html#quotes', 'quotes')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.properties.quotes")}}
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{cssxref("content")}}</li>
</ul>
|