Non breaking space in PDF

Hi,

Is it possible to add a non breaking space between two html lines?

The goal is to avoid this kind of page layout:

Excerpt of the custom print format:

    <table class="table table-bordered">
    	<tbody>
    		<tr>
    			<th style="width: 20%;">Article</th>

Wrap the content you want to keep together in a div and give it style ‘page-break-inside: avoid;’.

That should fix it.

Regards,
Vamyip

2 Likes

very nice!