CSS Position
<!DOCTYPE html> <html> <head> <style> .toolbar { position: sticky; top: 0; background: #ffffff; } </style> </head> <body> <div class="toolbar"> <button>Save</button> <button>Cancel</button> </div> </body> </html>
<!DOCTYPE html> <html> <head> <style> .toolbar { position: sticky; top: 0; background: #ffffff; } </style> </head> <body> <div class="toolbar"> <button>Save</button> <button>Cancel</button> </div> </body> </html>