Here's the second page, the image is getting smaller
Created with DOMPDF and Laravel, the first page, my image is fine, but when the second page is getting smaller, i don't know why.. i've been trying to use div, but its still not working i'm using table and here's my code
<table>
<tbody>
<tr>
<td>
<img src="{{$content['image2']}}" class="img kecil" />
</td>
<td>
{!! $content['paragraph2'] !!}
</td>
</tr>
<tr>
<td>
<img src="{{$content['image2']}}" class="img kecil" />
</td>
<td>
{!! $content['paragraph2'] !!}
</td>
</tr>
<tr>
<td>
<img src="{{$content['image2']}}" class="img kecil" />
</td>
<td>
{!! $content['paragraph2'] !!}
</td>
</tr>
<tr>
<td>
<img src="{{$content['image2']}}" class="img kecil" />
</td>
<td>
{!! $content['paragraph2'] !!}
</td>
</tr>
<tr>
<td>
<img src="{{$content['image2']}}" class="img kecil" />
</td>
<td>
{!! $content['paragraph2'] !!}
</td>
</tr>
<tr>
<td>
<img src="{{$content['image2']}}" class="img kecil" />
</td>
<td>
{!! $content['paragraph2'] !!}
</td>
</tr>
</tbody>
</table>
I also using bootstrap, what should i do to fix this? Thanks