Newer
Older
minerva / Tests / LibWeb / Ref / overflow-hidden-7.html
@minerva minerva on 13 Jul 404 bytes Initial commit
<!DOCTYPE html>
<link rel="match" href="reference/overflow-hidden-7-ref.html" />
<style>
    .box {
        overflow-y: hidden;
        overflow-x: visible;
        width: 200px;
        height: 200px;
        scrollbar-width: none;
    }

    .inner {
        width: 300px;
        height: 300px;
        background-color: darkblue;
    }
</style>
<div class="box">
    <div class="inner"></div>
</div>