I have added -moz-use-text-color
for border-color
in the following CSS code:
.booksline{
border-image: none;
margin: 0 auto 0px;
width: 96%;
height:220px;
padding:20px 20px 20px 0;
border-width: 1px 1px medium;
border-style: solid solid none;
border-color: #EAE9E9 #EAE9E9 -moz-use-text-color;
-moz-border-top-colors: none;
-moz-border-right-colors: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
border-image: none;
background: #F5F5F5 none repeat scroll 0% 0%;
}
When implemented, the border color shows up as black in Chrome and IE 9+, while it works correctly in Firefox. How can I fix this issue?
Here is a demo of the problem: http://jsfiddle.net/Sambora/4ptokwrh/