Quote:
Originally Posted by FlexxAeon
for example: when i want to do a "coming soon" page i like for the logo and/or text to sit in the middle of the page, scaling to the size of the browser window so it is always absolute middle. i STILL can't do this effectively is CSS due to lack of a "vertical align" attribute, and still use a table lol
|
If you simply want the image in the center of the page.
body{
background: url('image.jpg') center center;
}
If you want the image to stretch. Just put the image on the page and make it's width and height set to 100%.