<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .container{
            width: 1200px;
            height: 300px;
            margin: 0 auto;
        }
        .droppable {
            display: inline-block;
            height: 160px;
            width: 160px;
            margin: 10px;
            border: 3px black solid;
            background-color: white;
        }
        .draggable {
            background-image: url('http://source.unsplash.com/random/150x150');
            position: relative;
            height: 150px;
            width: 150px;
            top: 5px;
            left: 5px;
            cursor

本文转载:CSDN博客