html table 行ごとに色を変える#
table {
tr {
%%行ごとに色を変える%%
&:nth-child(odd) { background: `#ffffff;}` %%奇数行%%
&:nth-child(odd) { background: `#000000;}` %%偶数行%%
}
td {
%%列ごとに色を変える%%
&:nth-child(odd) { background: `#ffffff;}` %%奇数列%%
&:nth-child(odd) { background: `#000000;}` %%偶数列%%
}
}
Related Notes#
References#
Tags#
#html