mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
19 lines
337 B
HTML
19 lines
337 B
HTML
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
overflow: hidden;
|
|
}
|
|
#a {
|
|
background-color: green;
|
|
width: 100px;
|
|
height: 3000px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
This page should be nonscrollable because of overflow: hidden on the body.
|
|
<div id="a"></div>
|
|
</body>
|
|
</html>
|