plutext / docx4j-ImportXHTML

Converts XHTML to OpenXML WordML (docx) using docx4j
136 stars 125 forks source link

image element with margin-left #67

Open achimmihca opened 3 years ago

achimmihca commented 3 years ago

margin-left does not seem to work on an img-element:

<img style="margin-left: 30mm" src="theImage.png" alt="image"/>


As workaround, one can put the img in a div with margins:

    <div style="margin-bottom: 50mm; margin-left: 35mm;">
        <img src="theImage.png" alt="image"/>
    </div>