Zurb foundation table stripe styling

Yada picture Yada · Nov 4, 2013 · Viewed 9.8k times · Source

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?

http://foundation.zurb.com/docs/components/tables.html

Answer

Irvin Dominin picture Irvin Dominin · Nov 4, 2013

You can overwrite the foundation table alternating CSS rule using:

table tr:nth-of-type(even) {
    background-color: transparent !important;
}