Make Div Draggable using CSS

前端 未结 9 777
死守一世寂寞
死守一世寂寞 2020-12-07 22:26

I want to make my div tag with id \"drag_me\" to be draggable up to the length of 300px from left and 460px from top, only using CSS.

I also want to make it resizabl

9条回答
  •  温柔的废话
    2020-12-07 23:10

    Only using css techniques this does not seem possible to me. But you could use jqueryui draggable:

    $('#drag_me').draggable();
    

提交回复
热议问题