JSFiddle - React, Tailwind, and code Playground
by GuytheBuilder1
HTML
<div class="navBar">
<button type="button" class="button">text1</button>
<button type="button" class="button" >text2</button>
<button type="button" class="button">text3</button>
</div>
CSS
.navBar {
display: block;
border: 5px solid black;
width: 521.5px;
position: sticky;
margin-left: auto;
margin-right: auto;
top: 2px;
}
.button {
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
background-color: #555555;
transition-duration: 0.4s;
}
.button:hover {
background-color: white;
color: black;
}