return new Border($n.css("border-bottom-width"), $n.css("border-bottom-style"), $n.css("border-bottom-color"));
}
public boolean hasBottomBorder() {
Color bottomCellBackgroundColor = cellFactory.create(row + 1, col).getFillColor();
Border b = getBottomBorder();
//if cell bottom border color = bottom cell's background color, means this cell doesn't have bottom border
return !("1px".equals(b.getWidth())
&& "solid".equals(b.getStyle())
&& Objects.equal(bottomCellBackgroundColor, b.getColor()));
}