You could do either;
<strong>-Qty- - - Part Code- - -Description</strong><br>
-3 off- - -AAAAAAA- - -Widget 1<br>
-4 off- - -BBBBBBB- - -Widget 2<br>
-50 off- - -CCCCCC - - -Widget 3
or
<strong>General items as follows;</strong><br>
<ul style="list-style-type:none;">
<li>Widget 1
<li>Widget 2
<li>Widget 3
</li></ul>
You can change the style="....
to suit (for example just removing it entirely in that example will make the default bullets show on each line).
Both of these are a bit off for exactly this application though, so they are there for reference mainly.
Probably for what you are trying to do there a basic table would be best;
<table>
<tr>
<th>Qty</th>
<th>Part Code</th>
<th>Description</th>
</tr>
<tr>
<td>3 off</td>
<td>AAAAAAA</td>
<td>Widget 1</td>
</tr>
<tr>
<td>4 off</td>
<td>BBBBBBB</td>
<td>Widget 1</td>
</tr>
<tr>
<td>50 off</td>
<td>CCCCCC</td>
<td>Widget 1</td>
</tr>
</table>
I’m just playing with the table at the moment, for some reason it doesn’t like the line breaks. The preview inserts 15 <br>
's before the table unless I remove all the CR/LF’s. Not sure if this is a bug? Maybe @QFMathew has some idea regarding that?
<table><tr><th>Qty</th><th>Part Code</th><th>Description</th></tr><tr><td>3 off</td><td>AAAAAAA</td><td>Widget 1</td></tr><tr><td>4 off</td><td>BBBBBBB</td><td>Widget 1</td></tr><tr><td>50 off</td><td>CCCCCC</td><td>Widget 1</td></table>
Here it is all in one line, which works just fine but is exactly the same content just without line breaks.