Set default auto width and height for footer and header
This commit is contained in:
parent
08b225030e
commit
30110ee2af
1 changed files with 2 additions and 2 deletions
|
@ -1791,7 +1791,7 @@ public class TextParser extends Parser {
|
||||||
//Create header element
|
//Create header element
|
||||||
Element headerElement = converter.createElement("header");
|
Element headerElement = converter.createElement("header");
|
||||||
if (marginBottom != null) {
|
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();
|
Node pageNode = node.getParentNode();
|
||||||
pageNode.insertBefore(headerElement, node);
|
pageNode.insertBefore(headerElement, node);
|
||||||
|
@ -1825,7 +1825,7 @@ public class TextParser extends Parser {
|
||||||
//Create footer element
|
//Create footer element
|
||||||
Element footerElement = converter.createElement("footer");
|
Element footerElement = converter.createElement("footer");
|
||||||
if (marginTop != null) {
|
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();
|
Node pageNode = node.getParentNode();
|
||||||
pageNode.appendChild(footerElement);
|
pageNode.appendChild(footerElement);
|
||||||
|
|
Loading…
Add table
Reference in a new issue