The following LaTex code (credit) features a table within muticols:
\usepackage{multicol}
...
\begin{multicols}{3}
\subsubsection{Another Subsubsection}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
\begin{tabular}{@{}ll@{}}
\verb!Lorem! & Lorem ipsum dolor sit amet\\
\verb!ipsum! & consectetur adipisicing elit\\
\verb!dolor! & sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\\
\verb!sit! & Lorem ipsum dolor sit amet\\
\verb!amet! & Lorem ipsum dolor sit amet\\
\end{tabular}
\end{multicols}
The Lorem ipsum before the table is properly wrapped, but the long line (sed ipsum...) inside the table isn't.
Is there a way to force wrapping on all column contents? If not, which table property should be changed to assure wrapping?

lcolumns are always single line, usep{5cm}to make a fixed width column in which text wraps. – David Carlisle Sep 30 '12 at 21:36pin my example? – Adam Matan Sep 30 '12 at 21:38@{}ll@{}to@{}lp{5cm}@{}note this is nothing to do with multicols it is standard latex tabular usage so any latex guide or the questions linked on the right should help. – David Carlisle Sep 30 '12 at 21:43