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>
<div>
<span>uno</span>
<span>due</span>
<span>tre</span>
</div>
<div>
<span>4</span>
<span>5</span>
<span>6</span>
</div>
CSS
span:first-child{
color:red;
}
span:last-child{
color:blue;
}
span:nth-child(2){
color:green;
}