我希望我的vuetify应用程序内容(而不是导航或工具栏)能够水平和垂直滚动以显示一个大网格(非常类似于iframe或框架集): https://cawoodm.github.io/powowshell/ide/
主网格相当大(9x9 200px正方形+填充),要求是:
问题是我只能在窗口的整个高度上得到一个垂直滚动条(这是我不想要的),当我将其滚动到底部时,我得到了水平滚动条(尽管是灰色的)。
我整理了一个codepen来说明问题,但最终我希望对上面链接的URL演示进行必要的更正。
HTML
<v-content >
<v-layout fill-height fill-width>
<div id="scroll">
<div id="grid">81 200x200px blocks go here...
</div>
</div>
</v-layout>
</v-content>
CSS
#scroll {
max-width: 100%;
width: 100%;
max-height: 100%;
height: 100%;
overflow: scroll;
background-color: yellow;
padding: 10px;
}
#grid {
width: 2000px;
height: 2000px;
background-color: grey;
}