@vcl/vcl
Version:
The whole VCL in one package
31 lines (27 loc) • 1.07 kB
HTML
<div class="row justify-between">
<div class="container scrollable" style="height: 200px; width: 200px;">
<div style="height: 130%; width: 130%;">
Overflowing content, scrollable in x/y-direction
</div>
</div>
<div class="container scrollable y" style="height: 200px; width: 200px;">
<div style="height: 130%; width: 130%;">
Overflowing content, scrollable only in y-direction
</div>
</div>
<div class="container scrollable y-on-hover" style="height: 200px; width: 200px;">
<div style="height: 130%; width: 130%;">
Overflowing content, scrollable only in y-direction, on hover
</div>
</div>
<div class="container scrollable x" style="height: 200px; width: 200px;">
<div style="height: 130%; width: 130%;">
Overflowing content, scrollable only in x-direction
</div>
</div>
<div class="container scrollable x-on-hover" style="height: 200px; width: 200px;">
<div style="height: 130%; width: 130%;">
Overflowing content, scrollable only in x-direction, on hover
</div>
</div>
</div>