I am using below CSS to display button. When i switch to Windows High Contrast Mode, buttons become invisible. how do i fix this issue?
.button
{
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: -moz-linear-gradient(bottom, #d3d3d3, #fff);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d3d3d3');
color: #005694;
font-weight: bold;
border: 1px solid #808080;
margin-top: 1.5em;
}
I tried giving .button:BEFORE but with that i see normal button and sytles are not getting applied on it.
Please help me with some tips to fix this issue.
thanks