035-manual.html (630B)
1 <!DOCTYPE html> 2 <?xml version="1.0" encoding="utf-8"?> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <title>Drag and drop of floated overlapping elements: negative margins</title> 6 <style type="text/css"> 7 div 8 {height:100px; 9 width:100px; 10 float:left; 11 margin-left:-50px; 12 background-color:navy;} 13 div:nth-child(odd) 14 {background-color:maroon; 15 margin-top:50px;} 16 div[draggable] 17 {background-color:teal;} 18 </style> 19 </head> 20 <body> 21 <p>Only green areas should be draggable.</p> 22 <div></div> 23 <div></div> 24 <div draggable="true"></div> 25 <div></div> 26 <div></div> 27 <div draggable="true"></div> 28 <div></div> 29 <div></div> 30 </body> 31 </html>