How many div tags in one HTML document will it take before it affects performance? In this case, the tags are not nested, and the content in each of them is minimal (background color / image).
This question is a continuation of the previous question;
Drawing lines using click dots using JavaScript
Here I decided to do this using HTML and CSS.
Tags <div>will have a width of at least 4 pixels and a total width of 400-800 pixels, i.e. tags 100-200 div.
In addition, there will be five or six of these graphs / timelines stacked on top of each other. The number of div tags is then increased by 500-1200.
Again, given that each of them has little content, how will this affect performance?
_L
source
share