I am working with the HTML code provided below.
<tr>
<td class="slds-cell-wrap" data-label="">Category</td>
<td class="slds-cell-wrap break" data-label=""><strong> Test </strong></td>
<td class="slds-cell-wrap" data-label="">Format</td>
<td class="slds-cell-wrap break" data-label=""><strong>Test 1</strong></td>
</tr>
I am seeking to format the output in the following manner:
Category Format
Test Test1
Please note that the 2nd <td>
and the 4th <td>
should be on a new line.
How can I accomplish this using CSS styling?