JSFiddle - React, Tailwind, and code Playground

by mefron

HTML

<div id="menu">&nbsp;</div><div id="button">&nbsp;</div>

CSS

#menu{
    display:inline-block;
    border:1px solid black;
    height:100px;
    width:100px;
    position:relative;
}

#button{
    display:inline-block;
    border:1px solid black;
    height:30px;
    width:30px;
    position:relative;
    vertical-align:top;
    background:url("http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=6");
    background-repeat: no-repeat;
}

JavaScript

$('#button').on('click', function(){});