Skip to content

Commit

Permalink
Fix #518: stray line on checkbox on IE11
Browse files Browse the repository at this point in the history
IE sometimes miscalculates the border width of a rotated element resulting in a thin border as shown in #518. Setting a transparent border will fix the issue without affecting semantics or rendering on any other browser.
  • Loading branch information
alex-ju committed Jul 10, 2017
1 parent ed45e53 commit c20f1ad
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
content: "";
border: solid;
border-width: 0 0 5px 5px;
border-top-color: transparent;
background: transparent;
width: 17px;
height: 7px;
Expand Down

0 comments on commit c20f1ad

Please sign in to comment.