表格:如何修改单行垂直间距

表格:如何修改单行垂直间距

我有这张表:

在此处输入图片描述

\documentclass{article}
\usepackage{tabularx}

\begin{document}
  \begin{table}
    \centering
      \setlength{\tabcolsep}{10pt}
      \renewcommand{\arraystretch}{3}
      \begin{tabular}{llr}
        &&\emph{What went wrong} \\
        {Info \#1:} & the first stuff & nothing \\
        Info \#2: & the other stuff & everything \\
      \end{tabular}
  \end{table}

\end{document}

但我希望第一行靠近第二行,就像“下方对齐”一样。像这样:

在此处输入图片描述

怎么办?提前谢谢您。

相关内容