answersLogoWhite

0


Best Answer

The background for a web page can be any size. The size is often determined as a result of the design for the overall page. If the window is larger than the image, it will be tiled to repeat indefinitely in both directions, to fit the window.

Because the size of the browser window can vary greatly, most web backgrounds are tiled so they can repeat indefinitely without noticeable "seams" where the image begins/ends.

In the 90s it was customary to use square images of about 256x256 pixels, reminiscent of

the backgrounds used for desktop wallpaper. Modern site design prefers instead a thin, long image which is tiled to give the appearance of a simpler repeated pattern, such as diagonal stripes or gradients. These images can range between 1-10 pixels for the short side and as long as the pattern calls for on the long side. CSS can be used to stretch the image to the width and/or height of the window and remain fixed with respect to the browser window.

There is also a tradeoff to consider when deciding on a background image size -- smaller images can be transferred across the network faster, but larger images can provide more detail.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the size of a webpage background?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you set a song as your background for your webpage?

no you will go to prison


Why is it important to add a background to a webpage?

so that is coool


How can create webpage?

First you have to start with the basic layout of a webpage: from this you can do most things such as change the background colour or add text to the webpage. <html> <body bgcolor="blue"> <font face="Arial" color="white" size="8"> <p>This is a piece of example text</P></font> </body> </html>


Which property lets you change the color of various elements on the webpage?

In CSS: there will be a part underneath the section you are wanting to change called: "font-color" which will allow you to change the colour of the webpage text, same for "background-color". In HTML it is slightly easier to understand: this is the code i use when scripting <font face="pick a font" color="pick a colour" size="pick a size"> for background colour... <body bgcolor="pick a colour">


How do you put a picture as a background on the PC?

When you're viewing a picture on a webpage, right click and go to "Set As Background".


How do you make a background on a webpage using HTML?

Making a background on a webpage in HTML is deprecated; you are advised to use CSS instead. However, if you must use HTML and only HTML, then place the "background" attribute in the body tag of the document in question like so: <body background="http://www.example.com/picture.jpg">


What is unissis background check?

Never heard of unissis. Do you have a webpage or complete description?


Can you set a song as your webpage background?

you can use HTML to program a song into your website.


Why woudn't a background work on a webpage that i created in photoshop?

Try checking the order of your layers.


What is the ideal webpage size in pixels?

1024x768 and 1280x1024


How do you make backgrounds that were originally from a picture using HTML?

Use the attribute Background=".." inside the start Body tag using the URL of the image as the value. It should look like this: <body background="http//image URL./nameofimage.gif"> this will place the image as the background of your webpage, and at the end of your HTML document you close the Body </body> If the size of the photo is smaller than the size of the page the image will be repeated to fill in the space.


Put a picture in the background of a webpage using HTML?

Change the <body> tag to <body style="background-image: image.jpg">. Replace image.jpg with your image.