Your issue is most likely coming from the margin that is applied to the body by default, just make sure to set it to 0
.
* {
box-sizing: border-box;
}
html,
body {
overflow-x: visible;
margin: 0;
padding: 0;
height: 1000px;
}
div.sticky {
height: 50px;
width: 100%;
position: -webkit-sticky;
position: sticky;
top: 0;
background-color: black;
padding: 50px;
font-size: 20px;
z-index: 500;
}
<div class="sticky"></div>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…