JSFiddle - React, Tailwind, and code Playground

by Walter Rumsby

HTML

<div id="panel">
    <div>
        <input type="text"/>
    </div>
    <div>
        <input type="text"/>
    </div>
</div>
<input type="text"/>

CSS

*:focus {
    border: 1px sold yellow;
}

JavaScript

/*global YUI */
YUI().use('panel', function(Y) {
    'use strict';
    
    var panel = new Y.Panel({
        srcNode: '#panel',
        width: 400,
        modal: true,
        centered: true,
        buttons: [
            {
                value: 'OK'
            }
        ]
    });
    
    panel.render();
});