https://saruwakakun.com/html-css/basic/relative-absolute-fixed
[[position]]に`fixed`を指定する。位置は`top` `left` `bottom` `right` で調整する。
```html:右上50pxの位置に表示
<div class="grey-box" style="position: fixed; top: 50px; right: 50px">
ほげほげ
</div>
```
<div class="grey-box" style="position: fixed; top: 50px; right: 50px">
ほげほげ
</div>
モニタからの定位置ではなくページからの定位置。