Skip to content

Commit

Permalink
added left and right border
Browse files Browse the repository at this point in the history
  • Loading branch information
tillwolff committed Mar 25, 2017
1 parent 53818f2 commit 0c83608
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions EPPlus.Html/Converters/ExcelToCss.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ internal static CssDeclaration ToCss(this Border border)

css["border-top"] = border.Top.ToCssProperty();
css["border-bottom"] = border.Bottom.ToCssProperty();
css["border-right"] = border.Right.ToCssProperty();
css["border-left"] = border.Left.ToCssProperty();

return css;
}
Expand Down

0 comments on commit 0c83608

Please sign in to comment.