I am trying to wrap my text around a round cornerd box, so I chose mdframed package, for whatever reason, it doesn't do what I intend it to do.
\documentclass[a4paper,12pt]{article}
\usepackage{lipsum}
\usepackage{mdframed}
\begin{document}
\newmdenv[
roundcorner=5pt, frametitle={address}
]{address}
\begin{address}
\begin{center}
{
\lipsum[1]
}
\end{center}
\end{address}
\end{document}
