aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_-moz-drag-over/index.html
blob: af4b680211ddefb79fdb4226b5be350eb0ccb247 (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
---
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>