JSFiddle - React, Tailwind, and code Playground

by Dmitry Fateev

HTML

<header>
  <a href="#">Item 1</a>
  <a href="#">Item 2</a>
  <a href="#">Item 3</a>
  <a href="#">Item 4</a>
</header>

CSS

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  text-decoration: none;
}

header {
  padding-left: 20px;
  
  width: auto;
  height: 70px;
  
  background-color: #000;
  
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

header a {
  color: #FFF;
  line-height: 70px;
  /* margin-right: 10px; */
  
  padding: 0 25px;
}

header a:hover {
  background-color: red;
}