1234567891011121314151617181920 |
- <!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>
|