i have a backround image thats bigger than the browser window. is there a way to format it so the entire image can show on the page without having a scrollbar?
Printable View
i have a backround image thats bigger than the browser window. is there a way to format it so the entire image can show on the page without having a scrollbar?
You can do this in CSS. The following defines a background image which fills the whole page:
P.s: moved to the HTML forum.Code:body {
background-image: url("repeat;
background-attachmenpath/to/image.jpg");
background-repeat: no-repeat;
background-position: 100% 100%;
}
this leaves the image bigger than my window