Hi,
I'm using the Drupal plugin.
In CSS we can make text vertical using:
.vertical{
writing-mode: vertical-rl
}
But this does not translate into the word document.
Is there a way to get vertical text through CSS for HTML-to-Word?
Hi,
I'm using the Drupal plugin.
In CSS we can make text vertical using:
.vertical{
writing-mode: vertical-rl
}
But this does not translate into the word document.
Is there a way to get vertical text through CSS for HTML-to-Word?
Hello,
You can use a dir attribute to set a text direction in paragraphs and cells with the following values: lrTb, tbRl, btLr, lrTbV, tbRlV, tbLrV . Or use a custom paragraph style, on https://www.phpdocx.com/documentation/introduction/html-to-word-PHP (Using native Word formatting with HTML section) you can read more information about using custom paragraph styles with HTML to DOCX transformations.
Regards.
Maybe I'm missing something...
I've tried:
<td style="dir:btLr">
<div style="dir:btLr">
<span style="dir:btLr">
.vert{
dir: btLr;
}
None of these is resulting in vertical text in my docx.
Hello,
You can use that property with paragraphs and cells, not with span tags. If you want to use div tags a p tags, you need to enable the parseDivsAsPs option (https://www.phpdocx.com/api-documentation/word-content/embed-html-Word-document-with-PHP).
These are the available values for that option:
This is a simple sample that set tbRl as text direction for one cell content in a table:
$html = '<table border="1" style="border-collapse: collapse" width="600">
<tbody>
<tr width="600">
<td style="background-color: yellow">1_1</td>
<td rowspan="3" colspan="2" dir="tbRl">Rotated text</td>
</tr>
<tr width="600">
<td>Some random text.</td>
</tr>
<tr width="600">
<td>
<ul>
<li>One</li>
<li>Two <b>and a half</b></li>
</ul>
</td>
</tr>
<tr width="600">
<td>3_2</td>
<td>3_3</td>
<td>3_3</td>
</tr>
</tbody>
</table>';
$docx->embedHTML($html);
You can also use custom paragraphs styles.
Regards.
Still no joy.
I'm seeing no change with any of these:
<td style="dir:tbRl;">content</td>
<td style="dir:tbRlV;">content</td>
Could this have to do with the fact that I'm using the Drupal 8 plugin? Is something turned off?
I've just seen the problem. I'm including it in <style></style> when it is not.
Sorry....