JSFiddle - React, Tailwind, and code Playground

by trolleymusic

HTML

<script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.0.6-development-only.js"></script>
<script src="https://raw.github.com/Trolleymusic/minWidth/master/minWidth.min.js"></script>
<div class="test"></div>

CSS

.test {
    position: relative;
    background : blue;
    height: 500px;
    width: 500px;
}
@media screen and (min-width : 600px) {
    .test {
        background: red;
    }
}

JavaScript

// You must include Modernizr for the minWidth script to work
//

(function () {
    //minWidth(1024);
}());