Do I really need to use -ms-filter CSS Opacity Properties? I want to run opacity for ie7 to ie11 browser and i used below mentioned css. I got to know that filter works for ie5-ie8 and -ms-filter is only for ie8. if both works for ie8 than what is the purpose of using -ms-filter.
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /*Internet Explorer 8 */
filter: alpha(opacity=50); /*Internet Explorer 5, 6, 7, 8 */
opacity: 0.5; /* Modern browsers */