I have one base64 encoded png image.
I wrote following code to strech to full screen
[CSS]
background: url(data:image/png;base64,/*---Image base64 code--*/)no-repeat center center fixed;
-webkit-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-size: cover;
but didn't works. How can i achive this.