JSFiddle - React, Tailwind, and code Playground
by oshirowanen
HTML
<script src="https://github.com/malsup/corner/raw/master/jquery.corner.js"></script>
<div class="menu">
test
</div>
CSS
.menu
{
height:200px;
width:200px;
background-color:gray;
}
JavaScript
/* jquery corners */
$(function() {
$(".menu").corner("bottom");
});