JSFiddle - React, Tailwind, and code Playground

by matiasfh

HTML

<nav>
  <div>
  Inicio
  </div>
  <div>
  Blog
  </div>
  <div>
  Cursos
  </div>
</nav>

CSS

nav {
  display: flex;
  flex-direction: row;
}

nav div {
  padding: 10px;
  outline: 1px green solid;
}