How can CSS properties like "overflow-y" be utilized to manage text display in a box?

To manage text display in a box, the CSS property "overflow-y" can be utilized to control how text overflows within a specified height. By setting "overflow-y" to "scroll", text that exceeds the height of the box will be displayed with a vertical scrollbar. This allows users to scroll through the text content within the box without affecting the overall layout. ```html <style> .text-box { height: 100px; overflow-y: scroll; border: 1px solid black; padding: 10px; } </style> <div class="text-box"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. </div> ```