次のブロックだけ表のスタイルを変えたいけれど、WordPressのスタイルに変えられてしまう。
/* 見出しセルの文字色・背景色・枠線設定 */
.entry-content th {
color: #ffffff;
background-color: #ffffff;
border: none;
}
/* 見出し以外のセルの枠線設定 */
.entry-content td {
border: none;
}
/* 奇数行の背景色 */
.entry-content tr:nth-child(odd) td {
background-color: #ffffff;
}
/* 偶数行の背景色 */
.entry-content tr:nth-child(even) td {
background-color: #ffffff;
}
/* 一番左のセルのデフォルト */
.scrollable-table.stfc-sticky tr > :first-child{
background-color: #e9eff2;
color: #333;
position: sticky;
position: -webkit-sticky;
left: 0;
z-index: 2;
}
/* セルの間のデフォルト */
th, tbody td{
box-shadow: inset 1px 1px 3px var(--color-shadow-dark), inset -3px -3px 6px var(--color-shadow-light);
}
コメント