My code
\documentclass{article}
%\usepackage{enumitem}
%\setlist{nosep}
\begin{document}
\begin{tabular}{|p{5cm}|}
\hline
text top
\begin{itemize}
\item item text
\end{itemize}\\
\hline
\end{tabular}
\begin{tabular}{|p{5cm}|}
\hline
text top
\begin{itemize}
\item item text
\end{itemize}
text bottom\\
\hline
\end{tabular}
\end{document}
produces an empty line in the first tabular under the itemize (also unter an enumerate).
Even using
\usepackage{enumitem}
\setlist{nosep}
doesn't help.


in the firstitemize` list – May 06 '17 at 22:09tabulardoesn't do anything very useful, you could just use a\parbox. – David Carlisle May 06 '17 at 22:16\end{itemize}\\[-\normalbaselineskip]. – Mico May 06 '17 at 22:17