JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">
<script src="http://jqueryui.com/ui/jquery.ui.core.js"></script>
    <script src="http://jqueryui.com/ui/jquery.ui.widget.js"></script>
    <script src="http://jqueryui.com/ui/jquery.ui.button.js"></script>
    <link rel="stylesheet" href="http://jqueryui.com/demos.css">

<div style="width:100%" class = "ui-widget-content ui-corner-all">
    <table>
            <tr>
                <td>
                    test text
                </td>
            </tr>
        </table>
    </div>

CSS

td {
    text-align:right;
}

table, tr, td {
    width: 100%;
}

JavaScript

$(document).ready(function () {  

});