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

bootstrap 5.3 を使ったスクロールするテーブル。

thead に position: sticky を指定して thead を固定するやり方はいろいろ解説があるが、少なくとも chromium の現在のバージョンでは親要素と table 要素の間に微妙な隙間ができてしまい、スクロールすると thead の上に tbody の中身が表示されてしまう。
まあ 1px 程度なので無視することもできるがさすがに気になる。

なのでこの隙間を隠すために

                    <div class="position-sticky w-100 scrollable-table-shim">
                    </div>

のようにダミーの要素を配置する。

あとは枠線が二重になるのを margin: -1px とかで隠したりする。

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?