Title describes my goal, so far the MWE:
\documentclass{article}
\usepackage{enumitem, lipsum}
\begin{document}
\begin{description}[leftmargin=!,
align=right,
]
\item[label 0] \lipsum[75]
\item[\begin{tabular}{c}
label 1 1st line\
label 1 2nd line
\end{tabular}] \lipsum[75]
\item[\smash{\begin{tabular}{c}
label 2 1st line\
label 2 2nd line
\end{tabular}}] \lipsum[75]
\end{description}
\end{document}
\smash and tabular help me getting closer to the goal but still, the 1st line of list content align with the mid point of the label (not 1st line):
How do I align the 1st line of list content with 1st line of the label to have the following effect?
labe 0 { content of label 0 }
1st line of labe 1 { content of label 1; content of label 1;
2nd line of labe 1 content of label 1; content of label 1; c
ontent of label 1 }
Ideally the vertical spacing of label and content should matched, and this is why I also hope to eventually get rid of tabular since it adds extract space both vertically and horizontally.




\begin{tabular}[t]{c} …– Bernard Jan 26 '21 at 09:57