I tried make a table whose width is one-column linewidth in twocolumn environment. So I used table* and tabular*.
\begin{table*}[t]
caption{Some captions...}
\begin{tabular*}{\textwidth}{|l|l|l|}\hline
Table contents...
\end{tabular*}
\end{table*}
But it gives me an output whose right vertical line is not properly positioned:
Would you tell me why this happens or recommend another method to do it?

tabularx? – Bernard Dec 18 '21 at 13:38tabularx, the table is fitted to the half of linewidth since it is intwocolumnenvironment. – okw1124 Dec 19 '21 at 01:38stripenvironment, from thecutedpackage, and nesttabularxin this environment to use the whole text width. – Bernard Dec 19 '21 at 09:49