I have image 1*910px high, I want to make background.
here is my css:
body
{
background-image:url('/Content/themes/start/images/bgw.png');
background-position: 50% 100%;
background-repeat: repeat-x;
background-color: #e8f3fb;
color: #000;
}
If I have page with long content it looks good, but if page does not have long content the background doesn't display correctly.
I did try to set min-height, but it is not what I want to achieve.
Maybe there is some other way of doing this, or if not: how may I fix it?
Is there any way to make background more dynamic according to the content size?
Any advice/sample?