Below snippets will set the opacity of the elements and its children.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
selector { // IE 8 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; // IE 5-7 filter: alpha(opacity=50); // Mozilla 1.6 and older -moz-opacity: 0.5; //Safari 1.x -khtml-opacity: 0.5; //latest browsers opacity: 0.5; } |
I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are here to solve your problems.
Subscribe
Login
0 Comments