[Tex/LaTex] Multi-Line Cells Latex Table

tables

I want to make a two column table where each cell has multiple lines, no border line and set table to fit page width. The result should be similar to this:

this

How may I achieve this?

Best Answer

This can be achieved in a whole host of ways - minipages, \parboxes, tabulars or other boxes. Here's one using tabular and tabularx (for convenience, although it's not necessary):

enter image description here

\documentclass{article}

\usepackage{tabularx}

\begin{document}

\noindent
\begingroup
\setlength{\tabcolsep}{0pt}% Remove intercolumn spacing
\begin{tabularx}{\textwidth}{ >{\centering}X >{\centering\arraybackslash}X }
  \begin{tabular}[t]{c}
    Item 1 \\ Details of item \\ specification
  \end{tabular} &
  \begin{tabular}[t]{c}
    Item 2 \\ Details of item \\ specification
  \end{tabular} \\ \\

  \begin{tabular}[t]{c}
    Item 3 \\ Details of item \\ specification
  \end{tabular} &
  \begin{tabular}[t]{c}
    Item 4 \\ Details of item \\ specification
  \end{tabular} \\ \\

  \begin{tabular}[t]{c}
    Item 5 \\ Details of item \\ specification
  \end{tabular}
\end{tabularx}
\endgroup

\end{document}