Skip to content

Instantly share code, notes, and snippets.

@hmps
Created December 4, 2012 08:42
Show Gist options
  • Save hmps/4201897 to your computer and use it in GitHub Desktop.
Save hmps/4201897 to your computer and use it in GitHub Desktop.
Alternate row coloring in a responsive table
.container .row:nth-child(odd) > div:nth-child(odd), .container .row:nth-child(even) > div:nth-child(even) {
background-color: rgba(0, 0, 0, 0.05);
}
@hmps
Copy link
Author

hmps commented Dec 4, 2012

Used in a responsive calendar where the calendar grid collapses into a structure where the days are stacked on top of each other.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment