The <br/>
does not create the proper vertical spacing between items when inside a <span>
. The correct spacing is applied when closing the <span>
after the <br/>
.
Probably related to #19909.
Following HTML illustrates the issue:
<html>
<span>
this is a line followed by 2 line breaks and the <span> wraps the tables.
<br/><br/>
<table border="1">
<tbody>
<tr><td>
This is a table followed by 2 line breaks
</td></tr>
</tbody>
</table>
<br/><br/>
<table border="1">
<tbody>
<tr>
<td>
This second table should have some spacing to the first.
</td>
</tr>
</tbody>
</table>
</span>
<hr>
<span>
this is a line followed by 2 line breaks and the <span> is closed after.
<br/><br/>
</span>
<table border="1">
<tbody>
<tr><td>This is a table followed by 2 breaks</td></tr>
</tbody>
</table>
<br/><br/>
<table border="1">
<tbody>
<tr><td>
This second table should have some spacing to the first.
</td></tr>
</tbody>
</table>
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too