login about faq


I mean as in the internet and websites. Is it better to have multiple (say 6) small requests to files like stylesheets, etc. or less, bigger requests (like 3)?

asked Sep 16 '12 at 06:04

RafalChmiel's gravatar image

RafalChmiel
491138151156


When it comes to loading a web page, pretty much everyone of consequence has broadband these days so that part doesn't matter much. Just keep your page loads small, under a meg or so and use thumbnails of under 100KB.

Having said that:

  • Modern browsers do download files in parallel; but due to the way HTTP works, actual content files have to be downloaded in one stream, start to finish.
  • It's considered a web development best practice to put your stylesheet(s) in separate files, especially for styles you reuse. This will reduce the overall amount of data being transmitted, improve organization, and make it easier for you to change the design later.

answered Sep 21 '12 at 10:31

tsilb's gravatar image

tsilb
21.0k65199333

edited Sep 21 '12 at 10:34

Less, bigger. That is if what I think your asking is correct.

answered Sep 17 '12 at 19:30

Cameron's gravatar image

Cameron
1.8k103127134

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or __italic__
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported


Join Us in the Chat Room

Tags:

×125
×12
×12
×1

Asked: Sep 16 '12 at 06:04

Seen: 484 times

Last updated: Sep 21 '12 at 10:34