I have the MWE as follows:
\documentclass[12pt]{article}
\usepackage{caption}
\captionsetup[table]{position=bottom}
\begin{document}
\begin{table}
\centering
\begin{tabular}{|r|l|}
\hline
\textbf{Paramagnetic metal}&\textbf{Magnetic susceptibility}\\
\hline
Tungsten&$6.8~\text{x}~10^{-5}$\\
\hline
Aluminium&$2.2~\text{x}~10^{-5}$\\
\hline
Lithium&$1.4~\text{x}~10^{-5}$\\
\hline
Magnesium&$1.2~\text{x}~10^{-5}$\\
\hline
Sodium&$0.72~\text{x}~10^{-5}$\\
\hline
\end{tabular}
\caption{Magnetic susceptibility of some selected paramagnetic metals}
\end{table}
\end{document}
It produces this:

Now I would like to add some space between the \hline and -5 and as well maintain the table look as such (without making it lengthier (I mean visibly)). When I see my document, it feels like, -5 is touching the line, which I don't want



\strutto the cells might help. – Manuel Jul 18 '14 at 16:20