Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个项目:
我希望内容在灰色框中滚动。不要进入盒子下面或离开盒子。
我怎样才能做到这一点?
您需要 CSS 来限制灰色框的高度,并说其余内容(以防它高于您给出的高度)是可滚动的:
#grey_box { height:300px; overflow-y:scroll; }
在这段代码中,我假设你的灰色框是一个id="grey_box"高度为 200px 的 div。如果不正确,请更改这些值。重要的是给 div 一个高度,然后溢出:滚动;
id="grey_box"