JSFiddle - React, Tailwind, and code Playground

HTML

<!doctype html>
<html>
  <head>
  <style>
  html, body, #content, #left, #right, #center { height: 100%; }
  #content { width: 100%; }
  #left, #center, #right { display:inline-block; }
  #left, #center, #right { width: 33%; border: 1px solid red; }

  /* media query for IE 6-7 */
  @media, 
    { 
    #left, #center, #right { display:inline; }
    }
  </style>
  </head>
  <body>
    <div id="content">
        <div id="left">foo</div>
        <div id="center">bar</div>
        <div id="right">baz</div>
    </div>
  </body>
</html>

CSS

body {
    font-family: Arial;
    font-size: 14px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.4);
    text-align:center;
}

.wrapper {
    display:block;
    width: 80%;
    min-width:900px;
    height: 30px;
    background: rgb(242,242,242); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(211,211,211,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(100%,rgba(211,211,211,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(211,211,211,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(211,211,211,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(211,211,211,1) 100%); /* IE10+ */
    background: linear-gradient(top, rgba(242,242,242,1) 0%,rgba(211,211,211,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#d3d3d3',GradientType=0 ); /* IE6-9 */
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-left:auto;
    margin-right:auto;
}

.title {
    display:inline;
    float:left;
    line-height:30px;
    text-align:middle;
    font-size: 14px;
    padding-left:25px;
    padding-right:25px;
}

.title:hover {
    background:#dedede;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgb(211,211,211); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(211,211,211,1) 0%, rgba(147,147,147,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(211,211,211,1)), color-stop(100%,rgba(147,147,147,1))); /*...