I want to color a \multirow text but it overwrites the text at the second line. I found out that using \rowcolor{} and \multirow{-2}{text} don't overlay the text. But when using it the whole text shifts up and don't fit with the \rowcolor.
So here is my origin problem:
\begin{tabular}{ll}
\toprule
\textbf{Parameter} & \textbf{Beschreibung} \\
\hline
\midrule
\rowcolor{gray!10}
\textit{CV\_RETR\_EXTERNAL} & Abfrage der Extremwerte der Außenkontur\\
\multirow{2}{*}{\textit{CV\_RETR\_LIST}} & \multirow{2}{10cm}{Abfrage aller Konturen in einer Liste und Verknüpfung aller Konturen miteinander. } \\
&\\
\rowcolor{gray!10}
\multirow{2}{*}{\textit{CV\_RETR\_CCOMP}} & \multirow{2}{10cm}{Abfrage aller Konturen mit anschließender Einordnung in einer zweistufigen Hierarchie}\\
\rowcolor{gray!10}
&\\
\textit{CV\_RETR\_TREE} & Abfrage aller Konturen und Rekosntruktion der gesamten Hierarchie.\\
\hline
\end{tabular}
Result: Image1
When changing code to \multirow{-2} the text shifts up.
\begin{tabular}{ll}
\toprule
\textbf{Parameter} & \textbf{Beschreibung} \\
\hline
\midrule
\rowcolor{gray!10}
\textit{CV\_RETR\_EXTERNAL} & Abfrage der Extremwerte der Außenkontur\\
\multirow{2}{*}{\textit{CV\_RETR\_LIST}} & \multirow{2}{10cm}{Abfrage aller Konturen in einer Liste und Verknüpfung aller Konturen miteinander. } \\
&\\
\rowcolor{gray!10}
\multirow{-2}{*}{\textit{CV\_RETR\_CCOMP}} & \multirow{-2}{10cm}{Abfrage aller Konturen mit anschließender Einordnung in einer zweistufigen Hierarchie}\\
\rowcolor{gray!10}
&\\
\textit{CV\_RETR\_TREE} & Abfrage aller Konturen und Rekosntruktion der gesamten Hierarchie.\\
\hline
\end{tabular}
Result: Image2
Any hints?