Last active
August 22, 2018 05:04
-
-
Save zartgesotten/0a0eae2c2e356d7492c50226376f064a to your computer and use it in GitHub Desktop.
Sticky rows are easy now...
https://css-tricks.com/position-sticky-2/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .sticky-row { | |
| position:sticky; | |
| position:-webkit-sticky; | |
| top:0; | |
| z-index:2; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment