Drag and Drop in JavaScript Html and css on December 30, 2021 Get link Facebook X Pinterest Email Other Apps Drag and Drop in JavaScript Html and css Html part drag and drop Drag the image into the rectangular box CSS part *{ margin: 0; padding: 0; box-sizing: border-box; } body{ width: 400px; height: 400px; margin-left: 100px; background: #3333; /* color: #fff; */ } #start{ width: 350px; height: 150px; border: 2px solid #000; background: cadetblue; } img{ box-shadow: 0 0 10px #000; } Comments
Comments
Post a Comment