Thanks. Here is the code, that I am trying to use and the use of option [t] in the tabular environment does not seem to help.
Code: Select all
\documentclass[12pt]{article}
\begin{document}
\begin{enumerate}
\begin{tabular}{*{2}{p{0.5\textwidth}}}
\item First item & \item Third item \\
\item Second item & \item Fourth item
\end{tabular}
\end{enumerate}
\begin{enumerate}
\begin{tabular}[t]{*{2}{p{0.5\textwidth}}}
\item First item & \item Third item \\
\item Second item & \item Fourth item
\end{tabular}
\end{enumerate}
\end{document}