When I try to color a column red, it seems that white lines begin to emerge. Additionally the \hline changes width depending on how you zoom into the document in pdf format. It look as if the color infringes on the \hline?
Here is a MWE:
\documentclass[11pt,english]{article}
\usepackage{longtable,lscape}
\usepackage{color, colortbl}
\usepackage{bigstrut}
\begin{document}
\begin{table}
\resizebox{\textwidth}{!}{
\begin{tabular}{c>{\columncolor{red}}c}
a & b \bigstrut[b]\\
\hline
1 & 2 \\
3 & 4 \bigstrut[t]\\
\hline
5 & 6\\
\end{tabular}
}
\end{table}
\end{document}
Any ideas as to what is going on here?


colortblexplicitly. – Werner Oct 15 '13 at 19:25xcolor, i get an option clash with another package, how do i deal with this to attempt to use the solution in that answer? – Alex Oct 15 '13 at 19:40\usepackage[table]{xcolor}and if you get an option clash then use befor\documentclassthe command\PassOptionsToPackage{table}{xcolor}and then loadxcolorwithout an optional argument. – Oct 15 '13 at 19:42