I have a simple table like:
\documentclass[varwidth]{standalone}
\usepackage[table]{xcolor}
\usepackage[english]{babel}
\usepackage{multirow}
\begin{document}
\begin{center}
\renewcommand{\arraystretch}{1.9}
\begin{tabular}{cc}
\cellcolor[rgb]{0.0,0.5,1.0}Unsolvability & \multirow{2}{*}{ \cellcolor[rgb]{0.91,0.91,0.91}Chapter 7}\\
\cellcolor[rgb]{0.0,0.5,1.0}Relaxation & \cellcolor[rgb]{0.91,0.91,0.91}\\
\end{tabular}
\end{center}
\end{document}
But the output is not what I exactly wants since the background color covers the cell's text.
How should I fix this?





tabularfor the first column. – egreg Apr 08 '18 at 20:26