对齐小页面中三个表格的顶部

对齐小页面中三个表格的顶部

有人能告诉我为什么我无法对齐这 3 个表格的顶部吗?我尝试过回答这些问题,但没有任何帮助。

我希望你可以帮助我!

\begin{table}[H]
     \begin{minipage}[t]{0.32\textwidth}
        \begin{tabular}{|p{2,3cm}|p{1,3cm}|} \hline 
        \rowcolor{Blue} \multicolumn{2}{|c|}{\textcolor{White}{Labour Cost}}                         \\ \hline
        Shifts                   & 2,5          \\ \hline
        Operators                & 4            \\ \hline
        Salary (hour)            & 21.8      \\
        Overtime                 & 30\%         \\ \hline
        Hours with normal salary & 10,4         \\ \hline
        Average salary           & 24.9      \\ \hline
        Salary per day           & 1,995   \\ \hline
        \rowcolor{Blue} 300 days of salary       & 598,541 \\ \hline
        \end{tabular}
        \caption{My caption}
        \label{tab:labourcost}
\end{minipage}
\begin{minipage}[t]{0.32\textwidth}
    \begin{tabular}{|p{2,3cm}|p{1,4cm}|} \hline 
        \rowcolor{Blue} \multicolumn{2}{|c|}{\textcolor{White}{E-Coating Cost}}                         \\ \hline
        Average run time/day    & 20 Hours         \\ \hline
        Oven start time   & 2 Hours            \\ \hline
        Cost per kWh            &  0,16       \\
        Oven energy consumption/hour  & 950 kW         \\ \hline
        Other energy consumption/hour & 176,5 kW         \\ \hline
        Cost per hour    &  180,2      \\ \hline
        Cost per day           &  3,965.3   \\ \hline
        \rowcolor{Blue} 300 days of salary       &  1,189,584 \\ \hline
    \end{tabular}
    \caption{My caption}
    \label{tab:ecoatcost}
\end{minipage}
\begin{minipage}[t]{0.32\textwidth}
    \begin{tabular}{|p{2,3cm}|p{1,2cm}|} \hline 
        \rowcolor{Blue} \multicolumn{2}{|c|}{\textcolor{White}{Labour Cost}}                         \\ \hline
        Shifts                   & 2,5          \\ \hline
        Operators                & 4            \\ \hline
        Salary (hour)            & 21.8      \\
        Overtime                 & 30\%         \\ \hline
        Hours with normal salary & 10,4         \\ \hline
        Average salary           & 24.9      \\ \hline
        \rowcolor{GKNBlue} 300 days of salary       & 598,541 \\ \hline
    \end{tabular}
    \caption{My caption}
    \label{tab:chaincost}
\end{minipage}
\end{table}    

谢谢

答案1

您正在顶部对齐小页面,但每个页面顶部都是垂直居中的表格,您可能需要

\begin{tabular}[t]

相关内容