How to set background image for entire page opacity to 0.4 ?
I tried with
html {
background: url(img01.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
opacity: 0.4;
filter: alpha(opacity=40); /* For IE8 and earlier */
}
but it set all element's on page opacity and i only want opacity of img01.jpg ??