Skip to content Skip to sidebar Skip to footer

Does The Use Of Multiple Divs Affect Page Performance?

I am new to the world of coding as well as CSS. I have put together a page however am unsure if I may have overused the div tag and if it would affect the performance of the page a

Solution 1:

Don't worry about performance due to many divs. Unless you use hundreds of divs (e.g. to simulate rounded borders on some browsers), the bottleneck for webpage is and will be the inet connection.

Solution 2:

Not at all.

That is, relatively, a small amount of divs.

Browser rendering performance is extremely impressive these days, so the major bottleneck will be the speed of the Internet connection downloading the page.

The smaller you can make your page the faster it will download and render.

Post a Comment for "Does The Use Of Multiple Divs Affect Page Performance?"