Please take a look on the following example:
\documentclass[a4paper]{article}
\begin{document}
\begin{tabular}{ |p{ \textwidth}| }
\hline
\begin{enumerate}
\item Item in a list
\end{enumerate} \\
\hline
Item not in a list \\
\hline
\end{tabular}
\end{document}
The "Item in a list" has an extra spacing at top and bottom inside a table cell in comparison to "Item not in a list".
How to reduce this top and bottom spacing?
