Is there a command to make all columns of the same width? In my example the first two columns are small and the third is much wider. I know that I could have set exact psarameters, but I'm just surprised the columns are not aligned automatically. Thanks in advance!
\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|c|}
\hline
\multicolumn{3}{|c|}{Suppose there's a wide line of text here} \\
\hline
1 & 2 & 3 \\ %The third line is wider than the rest
\hline
\end{tabular}
\end{document}

