JSFiddle - React, Tailwind, and code Playground

by TJ VanToll

CSS

*
{
    box-sizing: border-box;
}

.ui-resizable, .ui-resizable * {
    box-sizing: content-box;
}

JavaScript

$(function (){
		var content = $('<div style="background-color: yellow">aaaaaa</div>');
		var dialog = $(content)
			.dialog({
				autoOpen: true,
				modal: true,
				width: 300,
				height: 300,
				title: "MyTitle",
				position: "center",
				overflow: "auto"
			});
			dialog.dialog('open');
			});