I want to change the color of the anchor tag and blur the image after visiting the link. but the only color is changing and the image looks the same. this is my CSS code
<style>
.image123{
padding-left:80px;
}
.imgContainer{
float:left;
margin: 93px;
}
a:link{
color:#000;
text-decoration:none;
}
a:visited {
color:#fafafc ;
text-decoration:none;
opacity:0.2 ;
filter:alpha(opacity=60);
}
</style>
here is my HTML part
<a href="breakdown_assistance_ins.php" id="ba" name="ba" >
<img src="images/breakdwn_assiatance.png" style="height:100px; width:100px;"/>
<p>Breakdown </p>
</a>
Can anyone tell me the reason why I couldn't blur the image and help me to do the same?