center absolute div css

by Anov Siradj

HTML

<div>
  magix!
</div>

CSS

div{
  background: red;
  bottom: 0;
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
}