JSFiddle - React, Tailwind, and code Playground

by artwl

HTML

<ul>
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    <li>5</li>
    <li>6</li>
    <li>7</li>
    <li>8</li>
</ul>

CSS

li{
    float:left;
    width:200px;
    height:200px;
    background-color:#CCC;
    margin:10px;
    list-style:none;
    text-align:center;
    line-height:200px;
    font-size:60px;
}