In my ruby on rails web application, I have an Image that consists of two colours the first portion is black and the second portion is blue. When I set this image on the background, the image is repeating:
body {
background:url("bg.png");
}
but when I use below the repeatation of the image is remove:
body {
background:url("bg.png") 0 0 repeat-x;
}
but vertically its not fit to the screen,
it covers the 2/3rd portion of the screen. and the black portion is fit but the blue portion not cover the remaining screen and I want to increase only the blue portion of the image not black, is it possible.
Kindly suggest me, waiting for your reply. Thanks.