To ensure that the scrollbar starts at the top and covers the entire text content, make the following changes:
Remove justify-content: center;
from .general_container
.
Remove height: fit-content;
and width: fit-content;
from .general_container
.
Set a specific max-height
for .general_container
to limit its height.
Example
.general_container { /* ...其他屬性... */ /* 刪除 justify-content: center; */ /* 刪除 height 和 width fit-content */ max-height: 600px; /* 根據(jù)需要進(jìn)行調(diào)整 */ /* ...其他屬性... */ overflow-x: hidden; overflow-y: auto; }