JSFiddle - React, Tailwind, and code Playground

by NinjaSk8ter

HTML

<body>
    <div class="x"></div>
    <p class="y"></p>
    <div id="bottom-wrap"></div>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://github.com/malsup/corner/raw/master/jquery.corner.js?v2.11"></script>
</body>

CSS

#bottom-wrap
{
    width:200px;
    height:200px;
    background:red;
    margin-bottom:10px;
}
.y{background:blue;}

JavaScript

$('#bottom-wrap').corner();