Reputation: 11
I have tried this for two days but still I couldn't find the solution can any one please help me in this.
Upvotes: 1
Views: 1687
Reputation: 578
I suppose your header HTML be like:
the CSS for it to stick on top must be:
.header {
position: fixed;
width: 100vw;
top: 0px;
left: 0px;
}
Upvotes: 0