<div style="overflow:scroll; overflow-x:hidden; max-height:420px;">
<div>
Just be sure to add a scrollbar to not interrupt the rest of the feed:
<div style="height:6969px"></div>
<img src="https://cohost.org/static/3bc3a1c5272e2ceb8712.png" height=250 />
<br/><br/>
</div>
</div>
the main idea is to have an outer container with a constrained height somehow (i'm using max-height) and then have a child that's taller than that (hence the div with height:6969px). putting overflow:scroll on the outer container will make the scrollbar appear (otherwise the inner content just gets cut off). overflow-x:hidden is to hide the horizontal scrollbar.


