Putting something in absolute center.

This is how we do it.

by jshacker

HTML

<div class="container">
  <div class="absolute-center">this should be in absolute center.</div>
</div>

CSS

body {
  margin: 0;
  padding: 0;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  text-align: center;
}