I want to use tcolorbox to create on line (inline) boxes of equal height, using equal height group. But the boxes are positioned at different heights.
MWE:
\documentclass[a4paper, oneside, 12pt, parskip=half]{scrartcl}
\usepackage[many]{tcolorbox}
\tcbset{common/.style={
enhanced, size=small, nobeforeafter, on line, drop fuzzy shadow
}
}
\newtcbox{\databoxcenter}[1]{
common, leftrule=0pt, rightrule=0pt, equal height group=#1
}
\newtcbox{\databoxleft}[1]{
common, rightrule=0pt, equal height group=#1
}
\newtcbox{\databoxright}[1]{
common, leftrule=0pt, equal height group=#1
}
\begin{document}
The following boxes are positioned as if \texttt{equal height group} is not in effect:
\databoxleft{addr}{2/17,} \databoxcenter{addr}{Hamlet 5,} \databoxright{addr}{China}. The heights do seem equal, though.
\end{document}

size=small. – Feb 08 '18 at 10:26\strut, you can addboxsep=0ptaftersize=small. – Ignasi Feb 08 '18 at 10:50