Suppose that we have this code:
\begin{table}
\caption{xxxx.}
\centering
\begin{tabular}{|c|c|}
\hline
\rowcolor{Gray}
% after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
1 & AAAAAAAAAAAAAAAA/BBBCCCCCCCC \\
\hline
2 & SDSDSDSDSD/FDFDFDFDF \\
\hline
2 & gGGGGGGGGG/TTTTTTTTTT \\
\hline
\rowcolor{Gray}
\end{tabular}
\label{table:QQ}
\end{table}
The output of this table is:
As you can see the height of table rows is not fix with font size (+texts are not in center of every cell/we have tendency to upward) . Why we have this behavior in default table appearance? How can i have a table with better appearance?

