JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <!-- freshdesignweb top bar -->
    <div class="freshdesignweb-top"> <a href="#" target="_blank">Home</a>
 <span class="right">
                <a href="#">
                    <strong>Back to the freshdesignweb Article</strong>
                </a>
            </span>

        <div class="clr"></div>
    </div>
    <!--/ freshdesignweb top bar -->
    <header>
         <h1><span>Tutorials</span>Demo CSS Table Price Hosting Plan</h1>

    </header>
    <!-- start header here-->
    <header>
        <div id="fdw-pricing-table">
            <div class="plan plan1">
                <div class="header">Enterprise</div>
                <div class="price">$59</div>
                <div class="monthly">per month</div>
                <ul>
                    <li><b>10GB</b> Disk Space</li>
                    <li><b>100GB</b> Monthly Bandwidth</li>
                    <li><b>20</b> Email Accounts</li>
                    <li><b>Unlimited</b> subdomains</li>
                </ul> <a class="signup" href="#">Sign up</a> 
            </div>
            <div class="plan plan2">
                <div class="header">Professional</div>
                <div class="price">$29</div>
                <div class="monthly">per month</div>
                <ul>
                    <li><b>5GB</b> Disk Space</li>
                    <li><b>50GB</b> Monthly Bandwidth</li>
                    <li><b>10</b> Email Accounts</li>
                    <li><b>Unlimited</b> subdomains</li>
                </ul> <a class="signup" href="#">Sign up</a> 
            </div>
            <div class="plan plan3">
                <div class="header">Standard</div>
                <div class="price">$19</div>
                <div class="monthly">per month</div>
                <ul>
                    <li><b>3GB</b> Disk Space</li>
                    <li><b>25GB</b> Monthly Bandwidth</li>
                    <li><b>5</b> Email Accounts</li>
                    <li><b>Unlimited</b>...

CSS

#fdw-pricing-table {
    margin:0 auto;
    text-align: center;
    width: 928px;
    /* total computed width */
    zoom: 1;
}
#fdw-pricing-table:before, #fdw-pricing-table:after {
    content:"";
    display: table
}
#fdw-pricing-table:after {
    clear: both
}
/* --------------- */
 #fdw-pricing-table .plan {
    font: 13px'Lucida Sans', 'trebuchet MS', Arial, Helvetica;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 20px;
    width: 180px;
    float: left;
    _display: inline;
    /* IE6 double margin fix */
    position: relative;
    margin: 0 5px;
    -moz-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, .3);
}
#fdw-pricing-table .plan:after {
    z-index: -1;
    position: absolute;
    content:"";
    bottom: 19px;
    right: 4px;
    width: 80%;
    top: 80%;
    -webkit-box-shadow: 0 12px 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 12px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 12px 5px rgba(0, 0, 0, .3);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
}
#fdw-pricing-table .popular-plan {
    top: -20px;
    padding: 40px 20px;
}
/* --------------- */
 #fdw-pricing-table .header {
    position: relative;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    padding: 40px;
    margin: -20px -20px 20px -20px;
    border-bottom: 8px solid;
    background-color: #eee;
    background-image: -moz-linear-gradient(#fff, #eee);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background-image: -webkit-linear-gradient(#fff, #eee);
    background-image: -o-linear-gradient(#fff, #eee);
    background-image: -ms-linear-gradient(#fff, #eee);
    background-image: linear-gradient(#fff, #eee);
}
#fdw-pricing-table .header:after {
    position:...