JSFiddle - React, Tailwind, and code Playground

by Shishir Max

HTML

<div class="scrollmenu">
  <a href="#home">Home</a>
  <a href="#news">Te</a>
  <a href="#contact">Contact</a>
  <a href="#home">Purchase</a>
  <a href="#home">Home</a>
  <a href="#home">Home</a>
  <a href="#home">Home</a>
  <a href="#home">Home</a>
</div>

CSS

div.scrollmenu {
  margin: 0 auto;
  width: 300px;
  height: 55px;
  background-color: transparent;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 20px;
  white-space: nowrap;
  cursor: default;
}

div.scrollmenu a {
  color: white;
  display: inline-block;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
}