Set default auto width and height for footer and header

This commit is contained in:
Georgy Litvinov 2020-02-26 16:17:42 +01:00
parent 08b225030e
commit 30110ee2af

View file

@ -1791,7 +1791,7 @@ public class TextParser extends Parser {
//Create header element
Element headerElement = converter.createElement("header");
if (marginBottom != null) {
headerElement.setAttribute("style", "margin-bottom:"+getPageSc().scale(marginBottom)+";");
headerElement.setAttribute("style", "margin-bottom:"+getPageSc().scale(marginBottom)+"; height:auto; width:auto;");
}
Node pageNode = node.getParentNode();
pageNode.insertBefore(headerElement, node);
@ -1825,7 +1825,7 @@ public class TextParser extends Parser {
//Create footer element
Element footerElement = converter.createElement("footer");
if (marginTop != null) {
footerElement.setAttribute("style", "margin-top:"+getPageSc().scale(marginTop)+";");
footerElement.setAttribute("style", "margin-top:"+getPageSc().scale(marginTop)+"; height:auto; width:auto;");
}
Node pageNode = node.getParentNode();
pageNode.appendChild(footerElement);