I have this minimal example:
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\usepackage{xcolor}
\begin{document}
\noindent\fcolorbox{red}{green}{
\noindent\begin{minipage}[t]{10cm}
left content
\end{minipage}
}
\noindent\fcolorbox{red}{green}{
\noindent\begin{minipage}[t]{5cm}
\includegraphics[width=4cm]{logo.jpg}
\newline
right content
\end{minipage}
}
\end{document}
This renders to this:
As you can see, it does not matter, what property do I set to \begin{minipage}, the minipages are not rendered to the top.
I want both minipages to render to the top of the page. How can I do that?

