I'm trying to create the following table, but the first cell has a black background. How can I get rid of it? I need alternate colors and multiple rows feature provided by tabularx.
\documentclass[]{article}
\usepackage[table]{xcolor}
\usepackage{tabularx}
\begin{document}
\begin{table}[h]
\centering
\caption{Points}
\label{tab:Points}
\begin{tabularx}{.9\textwidth}{cccX}
\hline
\textbf{Heading 1} & \textbf{Heading 2} & \textbf{Heading 3} & \textbf{Heading 4} \\
\hline
1 & a & 10 & Some text, Some text, Some text, Some text, Some text \\
\rowcolor[gray]{0.90}1 & b & 4 & \\
1 & c & 4 & \\
\rowcolor[gray]{0.90}1 & d & 4 & Some other text, Some other text \\
1 & e & 4 & \\
\hline
Total & & 26 & \\
\rowcolor[gray]{0.90} \hline
\end{tabularx}
\end{table}
\end{document}

\rowcolor[gray]{0.90}... – Werner Mar 04 '16 at 17:38