Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

sticky mat-toolbar

.app-toolbar {
    position: sticky;
    position: -webkit-sticky; /* For macOS/iOS Safari */
    top: 0; /* Sets the sticky toolbar to be on top */
    z-index: 1000; /* Ensure that your app's content doesn't overlap the toolbar */
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sticky
ADD COMMENT
Topic
Name
2+1 =