I try to use different vertical alignments for each column with tabular environment, but I cannot get it to work. Here is my code:
\renewcommand{\arraystretch}{2.5}
\begin{table}[H]
\begin{center}
\begin{tabular}{ | m{1cm} | p{1cm} | b{1cm} | }
\hline
%\multirow{-2}{*}{\textbf{Class}}
class & (mW) & (m) \\
\hline
\textbf{1} & 100 & 100\\
\textbf{2} & 2.5 & 10\\
\textbf{3} & 1 & 1\\
\textbf{4} & 0.5 & 0.5\\
\hline
\end{tabular}
\caption{test}
\end{center}
\end{table}


