コンテンツにスキップ

Table

標準的なスタイルを適用した表を呼び出すコンポーネントです。

次のような変数でボーダースタイルを調整できるようになっています。

:where(.l--table) {
--bdwY: 1px;
--bdwX: 1px;
--bds: solid;
--bdc: var(--c--divider);
--thead-bdbe: solid 2px;
--tfoot-bdbs: solid 2px;
}

また、後述するオプトインのバリエーション(セルの固定表示)を考慮した設計になっています

Import

import { Table } from '@lism-ui/core';

Usage

Preview
Header 1Header 2Header 3Header 4
Cell 1Cell 2Cell 3Cell 4
Cell 2-1Cell 2-2Cell 2-3Cell 2-4
Cell 3-1Cell 3-2Cell 3-3Cell 3-4
Footer 1Footer 2Footer 3Footer 4
<Table>
<caption>Caption</caption>
<thead>...</thead>
<tbody>...</tbody>
<tfoot>...</tfoot>
</Table>

.l--tableは、次のようなCSSが適用されており、いくつかの変数でプロパティが管理されています。
これは、スクロール時に thead などを固定できるようにすることをあらかじめ考慮した設計になっています。

—bdwXで左右のボーダーをなくし、thのカラーリングを指定する例
Header 1Header 2Header 3Header 4
Cell 1Cell 2Cell 3Cell 4
Cell 2-1Cell 2-2Cell 2-3Cell 2-4
Cell 3-1Cell 3-2Cell 3-3Cell 3-4
Footer 1Footer 2Footer 3Footer 4
<Table thBgc='base-2' bdwX='1px'>
<thead>...</thead>
<tbody>...</tbody>
<tfoot>...</tfoot>
</Table>

Opt-in

以下のような2つのバリエーションクラスを用意する例を紹介します。

  • セル1列目を固定するl--table--fixCol1
  • theadを固定するl--table--fixHead
scroll時にtheadと、1列目のセルを固定する例
Header 1Header 2Header 3Header 3Header 3Header 3
Cell 1Cell 2Cell 3Cell 4Cell 2Cell 3
Cell 1Cell 2Cell 3
text
Cell 4Cell 2Cell 3
text
Cell 2Cell 4Cell 2
Cell 1Cell 2Cell 3
text
Cell 4Cell 2Cell 3
text
Cell 1Cell 2Cell 4Cell 2
Cell 1Cell 2Cell 4Cell 2Cell 3
text
.l--table--fixCol1 {
// .-nofix: rowspanの対応用クラス.
tr > :first-child:not(.-nofix) {
position: sticky;
left: 0;
z-index: 1; // 他のセルが relative だと上に来てしまうので、 z-index を少し上げておく
// スクロール時にborderが表示されない問題への対処
border-inline: none;
&::before {
content: '';
position: absolute;
inset: 0 calc(var(--bdwX) * -1) 0 0;
border-block: none;
}
}
}
.l--table--fixHead {
> thead {
position: sticky;
top: 0;
z-index: 2; // fixCol1 + 1
// スクロール時にborderが表示されない問題への対処
border-block: none;
}
> thead::before {
content: '';
position: absolute;
z-index: 2;
inset: 0 0 calc(var(--bdwY) * -0.5) 0;
border-block: var(--bdwY) var(--bds) var(--bdc);
border-block-end: var(--thead-bdbe);
}
}