JSFiddle - React, Tailwind, and code Playground

by thecoz21

HTML

<script src="http://modernizr.com/downloads/modernizr.js"></script>
<script src="https://raw.github.com/LeaVerou/prefixfree/gh-pages/prefixfree.min.js"></script>
<span>Hello world!</span>
<div></div>

CSS

span{
    font-size:30px;
    color:#fff;;
    text-shadow: 0 0 10px black;
}

no-textshadow{
    color:#000;
}
div{
    width:50px;
    height:50px;
    border:1px dashed #000;
    border-radius:5px;
/*    background:-webkit-linear-gradient(top , green, red);
    background:-moz-linear-gradient(top , green, red);
    background:-ms-linear-gradient(top , green, red);
    background:-o-linear-gradient(top , green, red);*/
    background:linear-gradient(top , green, red);



}