JSFiddle - React, Tailwind, and code Playground
by Jens Kühn
HTML
<nav>
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
</nav>
CSS
nav {
background-color: darkgoldenrod;
}
ul {
display: flex;
background-color: bisque;
list-style-type: none;
padding-inline-start: 0;
}