Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
186 views
in Technique[技术] by (71.8m points)

html - Sticky element does not start at edge of screen

My sticky element does not start at the edge of the screen and it is very annoying:

div.sticky {
    height: 50px;
    width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: black;
  padding: 50px;
  font-size: 20px;
  z-index: 500;
  html, body {
    overflow-x: visible;
  }
}
question from:https://stackoverflow.com/questions/65907801/sticky-element-does-not-start-at-edge-of-screen

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...