How to overlap the adjacent edges? In other words, the adjacent edges should be combined into one edge shared between to minipages such that all rules will have the same thickness.

\documentclass[10pt,dvipsnames,dvips,cmyk]{article}
\usepackage[a5paper,margin=10mm,showframe]{geometry}
\usepackage{lipsum,calc,xcolor}
\setlength{\fboxrule}{2mm}
\setlength{\fboxsep}{2mm}
\begin{document}\noindent{\color{red}%
\fbox{%
\begin{minipage}{0.5\textwidth-2\fboxrule-2\fboxsep}
\color{blue}\lipsum[1]
\end{minipage}}%
\fbox{%
\begin{minipage}{0.5\textwidth-2\fboxrule-2\fboxsep}
\color{blue}\lipsum[1]
\end{minipage}}}
\end{document}
EDIT 1:
Assume using table is prohibited by the game rule.


:-)– Hendrik Vogt Dec 28 '10 at 13:28