Skip to content

Instantly share code, notes, and snippets.

@nateluzod
Created May 19, 2012 01:39
Show Gist options
  • Save nateluzod/2728519 to your computer and use it in GitHub Desktop.
Save nateluzod/2728519 to your computer and use it in GitHub Desktop.
Zebra Striping with JSP
<c:forEach varStatus="loopStatus">
<tr class="${loopStatus.index % 2 == 0 ? 'odd' : 'even'}">
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment