I have table like
In output I got result like:
But I want to see without line breaking result
<table>
<tr>
<th>id</th>
<th>name</th>
<th>etc...</th>
</tr>
<tr>
<td>C-7788</td>
<td>Arthur</td>
<th>etc...</th>
</tr>
<tr>
<td>C-7w88</td>
<td>John</td>
<th>etc...</th>
</tr>
<tr>
<td>C-7789</td>
<td>King</td>
<th>etc...</th>
</tr>
</table>
In output I got result like:
id | name | etc...
C-
7788 |Arthur | etc
C-
7w88 |John | etc
C-
7789 |King | etc
But I want to see without line breaking result
Read more
id | name | etc...
C-7788 |Arthur | etc
C-7w88 |John | etc
C-7789 |King | etc