Center of body
Center of body
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;
}
<span>center me</span>
span {
position: absolute;
top: 50%; right: 50%;
transform: translate(50%,-50%);
background: black;
color: white;
width:100px;
height:100px;
}