テーブル記法を見やすくするCSS
Last updated
Unknown
Edit Source
テーブル記法を見やすくするCSS
table
/customize/テーブルの見た目をカスタマイズを改変
- とりあえずダークモードにしか対応していないけど、
/blu3moでは問題ないのでとりあえずこれで
1
2
3
4
5
6
7
8
9
10
| /* セル間に線を入れる */
.table-block .cell {
/* 全てのセルの右と下 */
border-right: solid 1px rgba(255,255,255, 0.2);
border-bottom: solid 1px rgba(255,255,255, 0.2);
}
.table-block .cell:first-child {
/* 1列目のセルの左 */
border-left: solid 1px rgba(255,255,255, 0.2);
}
|