JSFiddle - React, Tailwind, and code Playground

by MarkKramer

HTML

<div id="nav">
   <span class="navHeader">Bildes</span>
   <br />
   <a href="#">One</a> | <a href="#">Two</a> | <a href="#">Three</a>
</div>

CSS

#nav
{
    position: absolute;
    margin-top: 60px;
    height: 60px;
    width: 960px;
    background-color: aqua;
}

.navHeader
{
    letter-spacing: 6px;
    font-size: 36px;
    background-color: green;
}