I am using a 10×400 px image as my background image and the css is this:
body {
background-image:url('bg1.png');
background-repeat:repeat-x;
text-align: center;
background-size:100% 100%;
}
In chrome the image is expanding to the full height of the screen in chrome but not in firefox or IE. Help??
Try adding
min-heighttohtml.Demo
Don’t think
background-repeat: repeat-xwill be needed ifbackground-size: 100% 100%is used.