Skip to content

Instantly share code, notes, and snippets.

@pcote
Created March 13, 2017 23:19
Show Gist options
  • Save pcote/b9a39b31d1437d2b35402375607be259 to your computer and use it in GitHub Desktop.
Save pcote/b9a39b31d1437d2b35402375607be259 to your computer and use it in GitHub Desktop.
HTML5 Drag And Drop Drop Zone Area
<style>
.droparea {
width: 200px;
height: 200px;
border-style: solid;
border-width: 3px;
border-color: red;
float: left;
line-height: 200px;
text-align: center;
}
</style>
<div class="container">
<div class="droparea">Drop Here</div>
<div class="tablearea" id="tablearea"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment