In my current project, I have a unique challenge. I am working with a list of flattened div elements and unfortunately, I am unable to edit the HTML markup to add any structures. The first div in the list is quite long, and I would like to place it in a separate column with its own scrollbar. The remaining divs, whose number may vary, should be stacked in the right column. What CSS settings can I use to achieve this layout? I want to avoid using fixed or absolute positioning if possible.
<div id='1'>1</div>
<div id='2'>2</div>
<div id='3'>3</div>
.
.
.
<div id='n'>n</div>