JSFiddle - React, Tailwind, and code Playground

by dumptyd

HTML

<div class="fixed-container">
  <div class="container">
    <div class="content">Blah Blah</div>
  </div>
</div>

CSS

.fixed-container {
  position: fixed;
  text-align: center;
  width: 100%;
}
.container {
  background-color: red;
  display: inline-block;
  text-align: center;
}

.content {
  margin: 10px;
  padding: 10px 5px;
  background: blue;
  color: white;
  display: inline-block;
}