aboutsummaryrefslogtreecommitdiff
path: root/files/de/conflicting/web/css/_doublecolon_placeholder/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/conflicting/web/css/_doublecolon_placeholder/index.html')
-rw-r--r--files/de/conflicting/web/css/_doublecolon_placeholder/index.html109
1 files changed, 0 insertions, 109 deletions
diff --git a/files/de/conflicting/web/css/_doublecolon_placeholder/index.html b/files/de/conflicting/web/css/_doublecolon_placeholder/index.html
deleted file mode 100644
index 40df58fe68..0000000000
--- a/files/de/conflicting/web/css/_doublecolon_placeholder/index.html
+++ /dev/null
@@ -1,109 +0,0 @@
----
-title: '::-moz-placeholder'
-slug: conflicting/Web/CSS/::placeholder
-tags:
- - CSS
- - CSS Pseudo-class
- - CSS Reference
- - Non-standard
-translation_of: Web/CSS/::placeholder
-translation_of_original: Web/CSS/::-moz-placeholder
-original_slug: Web/CSS/::-moz-placeholder
----
-<div>{{Non-standard_header}}{{CSSRef}}</div>
-
-<div class="note"><strong>Hinweis:</strong> Das Pseudoelement <code>::-moz-placeholder</code> wurde eingeführt, um die Pseudoklasse {{cssxref(":-moz-placeholder")}}, die in Firefox 19 als veraltet eingestuft wurde, zu ersetzen.</div>
-
-<h2 id="Übersicht">Übersicht</h2>
-
-<p>Das <code>::-moz-placeholder</code> <a href="/de/docs/Web/CSS/Pseudo-elements">Pseudoelement</a> repräsentiert Formularelemente, die <a href="/de/docs/Web/HTML/Formulare_in_HTML#Das_placeholder_Attribut">Platzhaltertexte</a> anzeigen. Damit können Webentwickler und Theme Designer die Darstellung von Platzhaltertexten anpassen.</p>
-
-<p>Standardmäßig wird <code>{{cssxref("opacity")}}: 0.54</code> verwendet. Sollten Sie die Hintergrundfarbe der Formularelemente angepasst haben (beispielsweise in einen ähnlichen Farbton), so kann es sein, dass der Platzhaltertext nicht gut sichtbar ist. In diesem Fall können Sie mit <code>::-moz-placeholder</code> die Textdarstellung des Platzhaltertextes ändern.</p>
-
-<h2 id="Beispiel">Beispiel</h2>
-
-<p>Das folgende Beispiel färbt den Platzhaltertext grün.</p>
-
-<h3 id="HTML_Inhalt">HTML Inhalt</h3>
-
-<pre class="brush:html">&lt;input id="test" placeholder="Platzhaltertext!"&gt;
-</pre>
-
-<h3 id="CSS_Inhalt">CSS Inhalt</h3>
-
-<pre class="brush:html">input::-moz-placeholder {
- color: green;
-}
-</pre>
-
-<p>Das Ergebnis sieht folgendermaßen aus:</p>
-
-<p>{{EmbedLiveSample('Beispiel')}}</p>
-
-<h2 id="Spezifikationen">Spezifikationen</h2>
-
-<p>Nicht Teil einer Spezifikation.</p>
-
-<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
-
-<p>{{CompatibilityTable}}</p>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Merkmal</th>
- <th>Chrome</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari (WebKit)</th>
- </tr>
- <tr>
- <td>Grundlegende Unterstützung</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatGeckoDesktop("19.0")}}<sup>[1]</sup></td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Merkmal</th>
- <th>Android</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>Firefox OS</th>
- <th>IE Phone</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Grundlegende Unterstützung</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatGeckoMobile("19.0")}}<sup>[1]</sup></td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<p>[1] Firefox verwendet standardmäßig <code>{{cssxref("opacity")}}: 0.54</code> für Platzhaltertexte. Siehe {{Bug("556145")}}. Die meisten anderen Browser verwenden momentan andere Standards für ihre Platzhalter Pseudoelemente oder Pseudoklassen.</p>
-
-<p>Gecko hat dies zuvor als {{cssxref(":-moz-placeholder")}} Pseudoklasse implementiert. Siehe {{Bug("737786")}}.</p>
-
-<h2 id="Siehe_auch">Siehe auch</h2>
-
-<ul>
- <li><a href="/de/docs/Web/HTML/Formulare_in_HTML">Formulare in HTML</a></li>
- <li>{{HTMLElement("input")}}</li>
- <li>{{HTMLElement("textarea")}}</li>
-</ul>