What is the HTML or JAVA to make the background of your site expand or contract to any..

  • Thread starter Thread starter Mr Smith's Q&A's
  • Start date Start date
M

Mr Smith's Q&A's

Guest
...size browser? I am currently working on a site and got caught up with one little problem... the site's immediate background (not in a table) stays the same size, making it so it repeats which does not look good. Does anyone know how to fix that?
 
When you make your background, make a code like this:

body
{
background url("background.jpeg");
background-repeat:no-repeat;
background-position:center;
background-attachment:scroll;
background-size:100%
}
 
When you make your background, make a code like this:

body
{
background url("background.jpeg");
background-repeat:no-repeat;
background-position:center;
background-attachment:scroll;
background-size:100%
}
 
Back
Top