вы можете использовать max-heigh и min-height , чтобы установить для вас какое-то точное ограничение:
main{
width: 300px;
height: auto;
background:red;
}
.tstbx{
width:100px;
background:yellow;
max-height:120px;
min-heigh:120px;
overflow:scroll;
margin:10px;
display:inline-block;
}
<main>
<div class="tstbx">
<a>Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</a>
</div>
<div class="tstbx">
<a>Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</a>
</div>
<div class="tstbx">
<a>Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</a>
</div>
</main>