You can declare this fuzzy boundary side as border-style:inset, and it will clear it in firefox. just change your styles:
border: 20px solid yellow;
border-width: 0px 50px 80px 0px;
border-color: transparent transparent yellow transparent;</code>
to
border-style:solid inset solid solid;
border-width: 0px 50px 80px 0px;
border-color: transparent transparent yellow transparent;
works for me in ff19 and chrome Version 26.0.1410.12 dev-m on windows 7
source
share