aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_-moz-drag-over/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/_colon_-moz-drag-over/index.html')
-rw-r--r--files/de/web/css/_colon_-moz-drag-over/index.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/files/de/web/css/_colon_-moz-drag-over/index.html b/files/de/web/css/_colon_-moz-drag-over/index.html
new file mode 100644
index 0000000000..af4b680211
--- /dev/null
+++ b/files/de/web/css/_colon_-moz-drag-over/index.html
@@ -0,0 +1,42 @@
+---
+title: ':-moz-drag-over'
+slug: 'Web/CSS/:-moz-drag-over'
+tags:
+ - CSS
+ - CSS Referenz
+ - NeedsCompatTable
+ - Non-standard
+translation_of: 'Web/CSS/:-moz-drag-over'
+---
+<div>{{Non-standard_header}}{{CSSRef}}</div>
+
+<h2 id="Übersicht">Übersicht</h2>
+
+<p>Die <code>:-moz-drag-over</code> <a href="/de/docs/Web/CSS">CSS</a> <a href="/de/docs/Web/CSS/Pseudo-classes">Pseudoklasse</a> wird dazu verwendet, um ein Element zu stylen, wenn das drag-over Ereignis für es ausgelöst wird.</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="syntaxbox"><var>element</var>:-moz-drag-over { <em>Stileigenschaften</em> }
+</pre>
+
+<h2 id="Beispiel">Beispiel</h2>
+
+<h3 id="CSS">CSS</h3>
+
+<pre class="brush:css">td:-moz-drag-over {
+ color: red;
+}
+</pre>
+
+<h3 id="HTML">HTML</h3>
+
+<pre class="brush:html">&lt;table border="1"&gt;
+ &lt;tr&gt;
+ &lt;td width="100px" height="100px"&gt;Hierüber ziehen&lt;/td&gt;
+ &lt;/tr&gt;
+&lt;/table&gt;
+</pre>
+
+<h3 id="Ergebnis">Ergebnis</h3>
+
+<p>{{EmbedLiveSample("Example")}}</p>