private String getHtml(String titleSvg, String alignmentSvg)
{
StringBuilder htmlSvg = new StringBuilder();
- htmlSvg.append("<html><style type=\"text/css\">" + "div.title {"
- + "height: 100%;" + "width: 9%;" + "float: left;" + "}"
- + "div.align {" + "height: 100%;" + "width: 91%;"
- + "overflow: scroll;" + "float: right;" + "}" + "</style>"
+ htmlSvg.append("<html><style type=\"text/css\"> div.title {"
+ + "height: 100%; width:11%; float: left; }"
+ + "div.align { height: 100%; width:89%;"
+ + "overflow: scroll; float: right; } </style>"
+ "<div style=\"width:100%; height:100%; overflow: hidden\">"
+ "<div class=\"title\">");
htmlSvg.append(titleSvg);