Hello,
I have a flow that is taking a sharepoint list item, converting it to html, then to PDF to email. Most everything works fine but the long text fields don't wrap in the PDF.
I'd seen a thread about issues with rich text fields so I converted one to a string and put it in the question field, with the same result.
If I open the HTML file they're wrapped.
**** Edit I noticed the / on the TD tags missing fixed that and I'm closer to working

the PDF comes out like this

.richText{
height:100%;
word-wrap:break-word;
}
<tr class="richText">
<td><b>Question: </b></td>
<td class="richText" colspan=4> @{variables('QuestionText')}<td>
</tr>
<tr class="richText">
<td><b>Suggested Solution: </b></td>
<td class="richText" colspan=4> @{outputs('Get_RFI')?['body/Suggested_x0020_Solution']} <td>
</tr>
<tr class="richText">
<td><b>RFI Response: </b></td>
<td class="richText" colspan=4>@{outputs('Get_RFI')?['body/RFI_x0020_Reponse']}