Skip to content

Instantly share code, notes, and snippets.

@jesgs
Created August 16, 2018 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesgs/76b23306eacb5377d31e4fc134a588c6 to your computer and use it in GitHub Desktop.
Save jesgs/76b23306eacb5377d31e4fc134a588c6 to your computer and use it in GitHub Desktop.
.marquee {
overflow: hidden;
position: relative;
}
.marquee .responsive-table {
width: 100%;
height: max-content;
display: block;
position: relative;
overflow: hidden;
animation: marquee 15s linear;
}
@keyframes marquee {
0% { top: 0; }
100% { top: -50%; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment