How can I achieve alternating row colors in tables for two rows at a time? So two rows should have the same color, then two other rows, and so on. In the following example
Bla1 & reference1 \\
& Description1 \\
should have one color and
Bla2 & reference2 \\
& Description2 \\
should have another. Then start alternating again. How can this be achieved?
\documentclass[a4paper]{scrartcl}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[table]{xcolor}
\begin{document}
\section{Section}
\begin{tabular}{lp{10cm}}
\hline
\textbf{Col 1} & \textbf{Col 2} \\ \hline
Bla1 & reference1 \\
& Description1 \\
Bla2 & reference2 \\
& Description2 \\ \hline
\end{tabular}
\end{document}
Gonzalo Medina's solution works fine, however if one uses the glossaries package the acronyms table will have row colors as well.
How could I prevent the acronyms table to have this behavior?

\rowcolorsline from the preamble to a group containing the table the should have the colors; for example:{\rowcolors{1}{white}{blue!10}\begin{tabular}{Lp{10cm}}<contents>\end{tabular}}(notice the extra pair of outer braces). – Gonzalo Medina Jun 11 '12 at 17:46\rowcolors{1}{}{}before the acronyms. – Gonzalo Medina Jun 11 '12 at 18:02