JSFiddle - React, Tailwind, and code Playground

by graphettion

HTML

<div class="container">
  <div class="centered-div">Content here</div>
</div>

CSS

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
}
.centered-div {
  /* Optional styling */
  padding: 20px;
  background-color: lightblue;
}