JSFiddle - React, Tailwind, and code Playground

by johndilworth

HTML

<div class="draggable" >
    <p>&#9792; Person of Interest <br/>
        <span>1943&ndash;2011</span></p>
</div>

<div class="draggable" >
    <p>&#9794; Person of Interest <br/>
        <span>1943&ndash;2011</span></p>
</div>

CSS

.draggable{
    background-color: #ecede8;
    border: 1px solid #cdcbc8;
    width: 200px;
    height: 40px;
    padding: 0.5em;
    cursor: move;
}
.draggable p{
    color: #4B76B0;
    font-family: "Lucida Grande";
}

.draggable p span{
    font-size: 80%;
    color: #333;
    margin-left: 1em;
}

JavaScript

$(function() {
    $(".draggable").draggable();
});