In search of the most effective method for organizing numerous dynamically generated divs (all with identical widths) in a vertical stack, two potential solutions have emerged:
- Utilize float:left...
- Implement an unordered list and enclose each div within
li
tags
Personally, I am inclined towards option #2. How about you?