I would like to make a very dense dl-layout. The dt is in the same line with the dd's that follow. So some extra highlighting is needed to separate the dt from the dd. In traditional written documents this is done via an mdash or a colon.
Is it possible to specify this via CSS, or do I have to rewrite the data according to the style I chose?
(There is a similar issue with h1,h2 ... - headers. If the header is realized only by bolding the text in the same line where the paragraph starts, a period should be inserted after the header text. In LaTex there is an extra command for this, but again, I wonder if CSS could do that.)
(I am aware of this question, only not sure if this applies here too.)
Edit: I realize that it works as follows for colons, but not for mdashes
.myclass dt:after { content: ":"}