# Drag & Drop Elements can be made drag and droppable which can be helpful to allow users to re-order and re-position elements in a list, table or customize the user interface. ## Container In order to make elements drag and droppable you must define a container which contains all the drag and droppable elements. ```html
``` ## Draggable elements Elements which should be draggable in the container must be marked with `draggable="true"`. ```html
1
2
3
4
``` > If new draggable elements are dynamically added to the container they automatically get recognized, no additional event binding is necessary. ![Button normal](Developer-Guide/frontend/elements/dragndrop/dragndrop.png)