I have a table with line-breaked cells (using \makecell) and want to align the content vertically. The ``makecell'' command has an optional parameter for that -- however, only horizontal, not vertical alignment works. I was following a question asked here (which, however, does not use the tabular environment)
\documentclass{article}
\usepackage{makecell}
\begin{document}
\begin{tabular}{ | m{8em} | m{10cm} }
\makecell[tr]{This should be \right aligned}
&\makecell[tl]{This should be top left aligned}
\end{tabular}
\end{document}
As one can see, the `t' parameter does not work for the right cell.
