I have the code:
\documentclass{article}
\usepackage[a5paper]{geometry}
\begin{document}
\begin{tabular}{ | c | }
\hline
top\\[8ex]
\hline
center\\[8ex]
\hline
bottom\\[8ex]
\hline
\end{tabular}
\end{document}
Gives this:

The top column is already aligned top. How can I vertically align the center column at the center? And the bottom column at the bottom?

