private void borderStyles()

in thumbnails4j-xlsx/src/main/java/co/elastic/thumbnails4j/xlsx/XlsxToHtmlSerializer.java [191:196]


    private void borderStyles(Formatter html, CellStyle style){
        styleOut(html, "border-left", BORDER_STYLE_MAP.get(style.getBorderLeft()));
        styleOut(html, "border-right", BORDER_STYLE_MAP.get(style.getBorderRight()));
        styleOut(html, "border-top", BORDER_STYLE_MAP.get(style.getBorderTop()));
        styleOut(html, "border-bottom", BORDER_STYLE_MAP.get(style.getBorderBottom()));
    }