How to display block in table

How can I make this info in table show by row, not in one line.
EX:
Dispute:
DEMO

Type reprentative:
Wattson JAck
… and so on.

CODEPEN:


Thanks in advance

If you mean evrything in a single column I use a <dl>. Ex:

<dl>
  <dt>DISPUTE</dt>
  <dd>DEMO012</dd>
        ...
</dl>


Solution

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.