JSFiddle - React, Tailwind, and code Playground
by tabalinas
HTML
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<div id="dialog">
<div id="content">
Text
</div>
</div>
CSS
html {
height: 100%;
}
body {
height: 150%;
}
#dialog {
height: 100px !important;
}
#content {
height: 400px;
}
JavaScript
$("#dialog").dialog();