Consider the following Minimum Working Example (MWE):
\documentclass{article}
\usepackage{enumitem}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{\textwidth}{| p{2cm} | p{2cm} |}
Text & \begin{itemize}
\item Text
\item Text
\end{itemize}
\\
\end{tabularx}
\end{document}
Screenshot of the result:
Description of the issue:
The behavior of \itemize to let its items begin in a new line looks ugly in this case.
How could I get it like this?
I would prefer to avoid using a messy \vspace{-...pt} with hardcoded values to shift the items up.



