I turned the captions of my table by 90 degrees.
Unfortunately, the headings do not fit to the table contents. Screenshot:

Can this be changed? I already tried parbox but that did not work.
Here is my table:
\begin{tabular}{cccc}
\noalign{\vskip\doublerulesep}
& CSS & Canvas & SVG
\tabularnewline[\doublerulesep]
\multirow{1}{*}{\rotatebox{90}{\mbox{Google Chrome}}}
& \includegraphics[scale=0.7]{images/screenshots/chrome_css3}
& \includegraphics[scale=0.7]{images/screenshots/chrome_canvas}
& \includegraphics[scale=0.7]{images/screenshots/chrome_svg}
\tabularnewline[\doublerulesep]
\multirow{1}{*}{\rotatebox{90}{\mbox{Opera}}}
& \includegraphics[scale=0.7]{images/screenshots/opera_css3}
& \includegraphics[scale=0.7]{images/screenshots/opera_canvas}
& \includegraphics[scale=0.7]{images/screenshots/opera_svg}
\tabularnewline[\doublerulesep]
\multirow{1}{*}{\rotatebox{90}{\mbox{Mozilla Firefox}}}
& \includegraphics[scale=0.7]{images/screenshots/firefox_css3}
& \includegraphics[scale=0.7]{images/screenshots/firefox_canvas}
& \includegraphics[scale=0.7]{images/screenshots/firefox_svg}
\tabularnewline[\doublerulesep]
\multirow{1}{*}{\rotatebox{90}{\mbox{Apple Safari}}}
& \includegraphics[scale=0.7]{images/screenshots/safari_css3}
& \includegraphics[scale=0.7]{images/screenshots/safari_canvas}
& \includegraphics[scale=0.7]{images/screenshots/safari_svg}
\end{tabular}
Relevant posts here on Stack Exchange could not help me.
Am I using multirow wrong?


