Posted on: 3/12/2015 6:20:50 PM | Views : 567

hi,
I have a  large background image which has been optimized.
on computer it fills the screen and the text scrolls above it.


html{     /* This image will be displayed fullscreen */     background:url('desertpng.jpg') no-repeat center center;     /* Ensure the html element always takes up the full height of the browser window */     min-height:100%;     /* The Magic */     background-size:cover; } body{     /* Workaround for some mobile browsers */     min-height:100%; }

On a mobile like blackberry, the image appears at the top with text below which does
not look that attractive....

it is possible for image to show entirely and text to scroll ab ...

Go to the complete details ...