JSFiddle - React, Tailwind, and code Playground

HTML

<div id="containerDragable">
    <img id="img_messi" style="display: inline; position: absolute; z-index: 101; " src="http://www.elconfidencial.com/fotos/noticias_2011/2012090245messi_dentro.jpg" />
</div>

CSS

#containerDragable {
    width: 80vw; 
    height: 45vw;
    background-color: rgb(227, 227, 227);
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position:absolute;
}

JavaScript

$(function () {
    $('#img_messi').width($('#img_messi').width()/2);
    $('#img_messi').draggable({
        containment: "#containerDragable", cursor: "move", scroll: false
        
    });
});