i knew rgba will not work in ie8 browser. how can i solve this.
please refer below html
<html>
<head>
<style type="text/css">
body
{
background-color:black;
}
.navitem
{
color:red;
}
.navitem:hover
{
background: rgba(255, 255, 255, 0.3); /* browsers */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cffffff', endColorstr='#4cffffff'); /* IE */
}
</style>
</head>
<body>
<a class="navitem">Hot Alerts</a>
</body>
</html>
i googled and found the solutions in below link and i tried use that solution but still not working. what is the exact problem how can i solve this.
the below link i referred.
CSS background opacity with rgba not working in IE 8
Thanks,
Siva