How many div tags in one HTML document would one need before it affects performance? In this case, the tags are not nested and the content within each is minimal (background color/image).
This question is a follow-up on a previous question; http://stackoverflow.com/questions/2281859/drawing-lines-with-clickable-points-using-javascript
Here I settled on doing this using HTML and CSS.
The <div>
tags will have a width of at least 4 pixels, and a total width of 400-800 pixels, thereby 100-200 div tags.
On top of that, there will be five or six of these graphs/timelines stacked on top of each other. The number of div tags is then up in 500-1200.
Again, bearing that there is little content in each, how would this affect the performance?
_L