JSFiddle - React, Tailwind, and code Playground
by chenxsan
HTML
<link rel="stylesheet" href="http://yui.yahooapis.com/3.10.3/build/cssgrids/cssgrids.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/3.11.0/build/cssnormalize/cssnormalize-min.css">
<div class="yui3-g wrapper">
<div class="yui3-u-1-2 main">
左列
</div>
<div class="yui3-u-1-2 sidebar">
右列
</div>
</div>
CSS
.main{
background:red;
}
.sidebar{
background:green;
}
.wrapper{
width:301px;
}