SyntaxFix
Write A Post
Hire A Developer
Questions
Use position:fixed; and set the top:0;left:0;right:0;height:100px; and you should be able to have it "stick" to the top of the page.
position:fixed;
top:0;left:0;right:0;height:100px;
<div style="position:fixed;top:0;left:0;right:0;height:100px;">Some buttons</div>