How can I center a text vertically in a table? I've looked into the documentation that suggests to use tabular m{} or b{} tag, but it doesn't work for me.
MWE:
\documentclass[a4paper]{article}
\usepackage{array}
\usepackage{multirow}
\begin{document}
\begin{tabular}{| m{0.2in} | m{0.6in} | m{0.91in} |}
\hline
Lit & Page & Pages\\
\hline
1 & 2 & 5\\
\hline
\end{tabular}
\end{document}
Produced output:

Expected output:

I have read about \raisebox but I don't know how to apply it to the whole table and applying it manually to every cell is tedious.
Update 1:
User @Mico suggested to use \setlength\extrarowheight{2pt}, but it changes the row height, so this solution is not precise.
Is it possible to do so without changing the row height?


