JSFiddle - React, Tailwind, and code Playground

by Jean-Baptiste Audras

HTML

<ul class="topnav">
<li>Onglet 1</li>
<li>Onglet 2</li>
<li>Onglet 3</li>
</ul>

CSS

.topnav {
    width: 500px;
    background: red;
    height: 50px;
    list-style: none;
    text-align: center;
}
.topnav li {
    display: inline-block;
    height: 50px;
    background: yellow;
}