CSS - :-moz-drag-over

The :-moz-drag-over CSS pseudo-class is used to edit an element when a drag-over event is called on it.

Example

 

CSS

CSS
td:-moz-drag-over {
  color: red;
}

HTML

HTML
<table border="1">
  <tr>
    <td width="100px" height="100px">Drag Over</td>
  </tr>
</table>

Result

Syntax  

CSS
<var>element</var>:-moz-drag-over { style properties }

Description  

The :-moz-drag-over CSS pseudo-class is used to edit an element when a drag-over event is called on it.

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/:-moz-drag-over

CSS CSS Reference NeedsCompatTable Non-standard