I've just started using the labels package to manage labels, business cards, and pretty much anything I plan to print "X-up".
The documentation is pretty clear --
The task of this package is to produce a rectangular grid of items on a sheet of paper, with each item centered in its grid area.
[...]
Then, within each label, the label text is vertically centered in a box
Is there a way to override this, so that my labels are top-aligned?
It looks like the appropriate code is here:
\boxing@type{%
\vbox to \label@height{%
\vskip\TopLabelBorder
\vss
\hbox to \label@width{%
\hskip\LeftLabelBorder
\usebox{\this@label}%
\hss
}%
\vss
\vskip\BottomLabelBorder
}%
}%
Perhaps there is something I can include (that would go into the \this@label spot) that would somehow (I don't know the proper use of terms like "glue" and "stretch") overrule the existing \vss and force my label to be aligned to the top?


\parbox[c][<height>[t]{<width}{...}, but that sort of defeats the whole purpose of the labels environment. But not the\addresslabel\boxedaddresslabelapproach. – John Kormylo Nov 06 '18 at 17:04