JSFiddle - React, Tailwind, and code Playground

by WOUNDEDStevenJones

HTML

<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<div class="row">
    <div class="col-xs-12 col-sm-6 red"></div>
    <div class="col-xs-12 col-sm-6 blue"></div>
    <div class="col-xs-12 col-sm-6 green"></div>
</div>

CSS

/* Latest compiled and minified CSS included as External Resource*/

/* Optional theme */
@import url('//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css');

body {
    margin: 10px;
}

.red {
    background-color: red;
    min-height: 20px;
}
.blue {
    background-color: blue;
    min-height: 20px;
}
.green {
    background-color: green;
    min-height: 20px;
}