Here is a span that is sticky and I tried to place it exactly at the center of the document but I don't want to give margin-left or left because it does not give the exact center of the document.
So Is there any way to get an exact center with position sticky.?
.sticky {
position: sticky;
top: 0;
background-color: yellow;
font-size: 20px;
left: 50%;
}
p{
height:500px;
}
<h2>Sticky Element</h2>
<span class="sticky">I am from sticky</span>
<p>Some example text..</p>