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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
---
title: outline-color
slug: Web/CSS/outline-color
translation_of: Web/CSS/outline-color
---
<div><span style="line-height: 1.5;">{{CSSRef}}</span></div>
<h2 id="Zusammenfassung">Zusammenfassung</h2>
<p>Die <strong><code>outline-color</code></strong> CSS-Eigenschaft bestimmt die Farbe der Outline (den Umriss) eines Elements. Eine Outline ist eine Linie, die außerhalb des Rahmens (border) um Elemente gezeigt wird, damit das Element hervorsticht.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="brush:css">/* Keyword values */
outline-color: invert;
outline-color: red;
/* Global values */
outline-color: inherit;
outline-color: initial;
outline-color: unset;
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><code><color></code></dt>
<dd>See {{cssxref("<color>")}} for the various color keywords and notations.</dd>
<dt><code>invert</code></dt>
<dd>To ensure the outline is visible, performs a color inversion of the background. This makes the focus border more salient, regardless of the color in the background. Note that browsers are not required to support it. If not, they just consider the statement as invalid</dd>
</dl>
<h3 id="Formal_syntax">Formal syntax</h3>
{{csssyntax}}
<h2 id="Beispiel">Beispiel</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html;"><p class="example">My outline is blue, da ba dee.</p></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css; highlight:[3]">.example {
/* first need to set "outline" */
outline: 2px solid;
/* make the outline blue */
outline-color: #0000FF;
}</pre>
<h3 id="Live">Live:</h3>
<p>{{ EmbedLiveSample('Example', '', '', '', 'Web/CSS/outline-color') }}</p>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Basic UI', '#outline-color', 'outline-color')}}</td>
<td>{{Spec2('CSS3 Basic UI')}}</td>
<td>No change</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Transitions', '#animatable-css', 'outline-color')}}</td>
<td>{{Spec2('CSS3 Transitions')}}</td>
<td>Defines <code>outline-color</code> as animatable.</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'ui.html#propdef-outline-color', 'outline-color')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">Browser Kompatibilität</h2>
<div>{{CompatibilityTable}}</div>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Edge</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Basic support</td>
<td>1.0</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatGeckoDesktop("1.8")}} [1]</td>
<td>8.0</td>
<td>7.0</td>
<td>1.2 (125)</td>
</tr>
<tr>
<td><code>invert</code> value</td>
<td>{{CompatNo}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatNo}} [2]</td>
<td>8.0</td>
<td>{{CompatNo}} [3]</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Edge</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Phone</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<p>[1] In versions previous to Gecko 1.8: <code>-moz-outline-color</code>.</p>
<p>[2] Support had been dropped in version 3.0 (1.9).</p>
<p>[3] Supported in Opera 7 but support was dropped in Opera 15 with the adoption of Chromium/Blink engine.</p>
|