JSFiddle - React, Tailwind, and code Playground

by Softlink

HTML

<div>раз</div>
<span>два</span>
<span>три</span>
<span>четыре</span>
<div>пять</div>

CSS

span{
    font-style: italic;
}

span:nth-of-type(2){
    color: red;
    font-style: normal;
}
span:nth-of-type(3){
    color: blue;
    font-weight: bold;
}
div:last-child{
    font-family: Verdana;
    font-size: 30px;
}