in thumbnails4j-xlsx/src/main/java/co/elastic/thumbnails4j/xlsx/XlsxToHtmlSerializer.java [322:332]
private String tagStyle(Cell cell, CellStyle style){
if (style.getAlignment() == HorizontalAlignment.GENERAL){
CellType ultimateCellType = ultimateCellType(cell);
if (ultimateCellType == CellType.STRING){
return "style=\"text-align: left;\"";
} else if (ultimateCellType == CellType.BOOLEAN || ultimateCellType == CellType.ERROR){
return "style=\"text-align: center;\"";
}
}
return "";
}