I do not want to the default stripe styling for alternating rows in the Zurb Foundation css framework.
What's the easiest way to remove it?
You can overwrite the foundation table alternating CSS rule using:
table tr:nth-of-type(even) {
background-color: transparent !important;
}