use margin CSS properties to control indentation in HTML

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1166155 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-09-07 12:55:51 +00:00
parent d1aeec0d78
commit 78a366bd0c

View File

@ -129,10 +129,12 @@ public class WordToHtmlUtils extends AbstractWordUtils
public static void addIndent( Paragraph paragraph, StringBuilder style )
{
addIndent( style, "text-indent", paragraph.getFirstLineIndent() );
addIndent( style, "start-indent", paragraph.getIndentFromLeft() );
addIndent( style, "end-indent", paragraph.getIndentFromRight() );
addIndent( style, "space-before", paragraph.getSpacingBefore() );
addIndent( style, "space-after", paragraph.getSpacingAfter() );
addIndent( style, "margin-left", paragraph.getIndentFromLeft() );
addIndent( style, "margin-right", paragraph.getIndentFromRight() );
addIndent( style, "margin-top", paragraph.getSpacingBefore() );
addIndent( style, "margin-bottom", paragraph.getSpacingAfter() );
}
private static void addIndent( StringBuilder style, final String cssName,