heavy-styling-004.html (584B)
1 <!DOCTYPe html> 2 <meta charset='utf-8'> 3 <title>drag and drop – feedback overlay for heavily styled elements – 004</title> 4 <style> 5 a { 6 display: block; 7 height: 200px; 8 width: 200px; 9 background-color: blue; 10 box-shadow: 10px 10px 10px gray; 11 } 12 div { 13 background-color: orange; 14 } 15 </style> 16 17 <p>Drag the blue box below downwards. The drag placeholder should resemble the blue box. It may optionally also include the box's shadow, but must not include the orange rectangle.</p> 18 19 <div><a href='#' draggable="true" ondragstart="event.dataTransfer.effectAllowed ='copy'"></a></div>