I am not able to get the line-height to work on HTML->PDF conversion for version 22.8.0.
The HTML is very simple and looks like this: (note I used brackets due to html scrubbing)
<span style="line-height:50pt;">How to investigate and handle a customer complaint of payment not applied to account. <br>This best practice includes tried and true techniques including troubleshooting tips. testwewqeqetest change1</span>
It renders correctly in the browser, but when in PDF it does not show any spacing.
@shmeepline-height attribute in HTML corresponds to paragraph line spacing in MS Word document. In your HTML snippet, however, you specify this attribute in <span> tag, which corresponds Run node in MS Word document. If you open your HTML in MS Word line-height attribute specified in <span> tag will also be ignored.
To get the desired output, you should specify line-height attribute in <p> tag, like shown in the following HTML:
<html>
<body>
<p style="line-height:50pt;">How to investigate and handle a customer complaint of payment not applied to account. <br>This best practice includes tried and true techniques including troubleshooting tips. testwewqeqetest change1</p>
</body>
</html>
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
Enables storage, such as cookies, related to analytics.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.