JSFiddle - React, Tailwind, and code Playground

by ice_cream0414

HTML

<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>

CSS

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