sticky mat toolbar

Solutions on MaxInterview for sticky mat toolbar by the best coders in the world

showing results for - "sticky mat toolbar"
Wyatt
20 Jan 2020
1.app-toolbar {
2    position: sticky;
3    position: -webkit-sticky; /* For macOS/iOS Safari */
4    top: 0; /* Sets the sticky toolbar to be on top */
5    z-index: 1000; /* Ensure that your app's content doesn't overlap the toolbar */
6}