The <hr> should serve the purpose of simply displaying a line, where, once the HTML is converted to PDF, two people would put their signatures. The Unterschrift Baustellenleiter has the <hr> removed for demonstration purposes here and for me to make sure that the <p> is not messing it up.
My question is, if obviously the <p> element is not to blame, why then would my <hr> element display as a box instead of being displayed as a line?
Screenshot:
The final result should look like this screenshot of a Word file:
<table>
<tr>
<td colspan="3">
<br>
<hr>
<p>Ort und Datum </p>
</td>
<td colspan="4">
<p>Unterschrift Baustellenleiter</p>
</td>
<td colspan="3">
<p><br>
<hr>Unterschrift Monteur
</p>
</td>
</tr>
</table>
. Also converting documents to PDF, depending upon the library, can use the technique to DRAW the table like we do in canvas (just to give you an idea). So this can have this behavior. My suggestion would be to use ```border-bottom``` instead of
if styles are allowed. – Arslan Shahab Jun 03 '22 at 12:50
`* { font-family: Arial, sans-serif; padding: 5px; }` Otherwise, there is no place where I am addressing the
elements. – Sven I. Jun 03 '22 at 13:23
look like a box? – Sven I. Jun 03 '22 at 13:43
creates a border. You can see the same thing happening with: . If you remove the padding theres just a regular line, but with the padding there is a box. – MF714 Jun 03 '22 at 13:49