I'm trying to make a colored rows or columns in my table but for some reason table border becomes invisible on some places. For example in the attachment I've included the leftmost vertical border is invisible and it should not be? It seems that the color covers the border on some places.
Can someone here help me to fix this? Here is my code which produces the table.
Code: Select all
\documentclass[12pt]{article}
\usepackage{colortbl}
\usepackage[croatian]{babel}
\begin{document}
\begin{tabular}{|l|c|}
\hline
\rowcolor[gray]{0.95} one&two\\
\rowcolor[gray]{0.95} three&four\\
\hline
\end{tabular}
\end{document}