Hello,
I'm using phpdocx 12.5 premium to embed HTML in word docs.
Is it possible to globally set the left margin/padding of OL and UL lists without applying a custom class to them? All attempts to do this using CSS have not worked.
Example code that does not affect left margin/padding:
<ul style="margin-left: 0; padding-left: 0;">
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
Thanks!