JSFiddle - React, Tailwind, and code Playground

by mrivasa

HTML

<ul>
    <li>Item 1</li><li>Item 2</li><li>Item 3</li>
</ul>
<span>A</span><span>B</span><span>C</span>

CSS

li, span { 
    display: inline-block;
    width: 100px;
    font-size: 30px;
    color: white; 
    text-align: center;
}
span{
  background: #333;
}

li:nth-child(1) {
    background: #333;
}
li:nth-child(2) {
    background: #666;
}
li:nth-child(3) {
    background: #999;
}
body {
    margin: 16px;
}