Center of body

Center of body

by Santosh Thakur

HTML

<span>center me</span>

CSS

span {
  position: absolute;
  top: 50%; right: 50%;
  transform: translate(50%,-50%);
  background: black;
  color: white;
  width:100px;
  height:100px;
}