Bluemo's Brain

Search

Search IconIcon to open search

テーブル記法を見やすくするCSS

Last updated Unknown Edit Source

    テーブル記法を見やすくするCSS

    table

    1234
    5678

    /customize/テーブルの見た目をカスタマイズを改変

    • とりあえずダークモードにしか対応していないけど、 /blu3moでは問題ないのでとりあえずこれで
      • 後で気が向いたら直したい style.css
     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);
     }