0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[修正版]スクロールするテーブル(bootstrap 5.3)

Posted at

前回 (https://qiita.com/okadabasso/items/a5d3dbe581307da37988) やったやつの修正版。

flex を使いすぎなのと無駄なスタイルが多かったので整理した。特に "scrollable-table-shim" とか不要になった。

要点

  • body 以下、無駄に d-flex にしていたのを削除した
  • main 直下(たいていのテンプレートエンジンで個別ページのコンテンツを書く部分) に d-flex flex-column を指定し、スタイルに height: calc(100vh - 5rem); を追加して main の高さを固定する
  • .scrollable-containeroverflow-y-auto を指定する
  • scrollable-table-shim は不要なので削除する
  • .scrollable-container thead には top: -1px を指定してスクロールしたときに見えてしまう隙間を消す

他に、 最初の列に position: sticky; left: 0 を指定して横スクロールが発生したときに最初の列だけはスクロールしないようにした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?