Is there a way to make a div expand to fit its contents up to 250px and then scroll if necessary? I attempted using the following CSS:
text-overflow: ellipsis; max-height: 250px; overflow-y: scroll;
However, this solution doesn't achieve the desired effect as it starts scrolling when text exceeds 100px. Any ideas on how to accomplish this using only CSS?