Skip to content

Commit

Permalink
add survey as poc
Browse files Browse the repository at this point in the history
  • Loading branch information
aazw committed Jan 16, 2025
1 parent 63ecaec commit d66e618
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
7 changes: 7 additions & 0 deletions poc/overflow-gap/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# overflow:scroll 時に表示されるスクロールバーについて

![](./screenshot-001.png)
![](./screenshot-002.png)

下端、右端はどうもギリギリまでいかない模様.
デザイン的にわかりにくいが、スクリーンバーの領域分、余るようだ.
35 changes: 35 additions & 0 deletions poc/overflow-gap/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>RFC Search</title>
<style>
html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}

body {
width: 50%;
height: 50%;
margin: 0;
padding: 0;
overflow: auto;
background: red;
}

#root {
width: 10000px;
height: 10000px;
background: green;
}
</style>
</head>
<body>
<div id="root"></div>
</body>
</html>
Binary file added poc/overflow-gap/screenshot-001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added poc/overflow-gap/screenshot-002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d66e618

Please sign in to comment.