Scrapboxの表をカスタマイズする
▼ CSSはこちら
code:style.css
/* テーブルを控えめに表示する */
.table-block .cell:nth-child(odd),
.table-block .cell:nth-child(even) {
background: unset;
}
.table-block .table-block-start {
padding: unset;
font-size: unset;
background-color: unset;
}
.table-block .table-block-start a {
color: unset;
}
/* セル間に線を入れる */
.table-block .cell {
/* 全てのセルの右と下 */
}
.table-block .cell:first-child {
/* 1列目のセルの左 */
}
.section-title + .line .table-block .cell {
/* 1行目のセルの上 */
}
table:上記CSSを適用させた表
あああ いいい ううう えええ
かかか ききき くくく けけけ
https://gyazo.com/ca63cbe9e9ffaa6e495bb286b77cfab8
参考
更新日