Loader div

by Ayyappan Sakthivadivel

HTML

<div class="loader">
Testing
</div>

CSS

.loader {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}