I was following the instructions here and here to get a good looking table without the structure exceeding the bottom rule.
Both did not provide a solution. Is there a way to achieve this?
\documentclass[11pt]{article}
\usepackage[hmarginratio=1:1]{geometry}
\geometry{
top=2cm,
bottom=2.5cm,
textwidth=7in}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{booktabs}
\begin{document}
\begin{table}[h]
\begin{tabularx}{\textwidth}{lXlll}
No. & Structure & Another Number & One More Number & Last Number\\
\midrule
\multirow{3}{*}{1
} & \multirow{3}{*}{\includegraphics[width=4cm]{image}
} & \multirow{3}{*}{1234
} & 1 & 1 \\
&&& 2 & 2 \\
&&& 3 & 3 \\
\bottomrule
\end{tabularx}
\end{table}
\end{document}


