1. ホーム
  2. css

[解決済み] Bootstrapのテーブルがストライプ状になっている。ストライプの背景色を変更するには?

2022-05-10 11:46:22

質問

Bootstrapクラスで table-striped と同じ背景色になります。 #F9F9F9 . この色を変更するにはどうしたらよいですか?

解決方法は?

.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
   background-color: red;
}

bootstrap.css のこの行を変更します。 または、(2n+1)の代わりに(奇数)または(偶数)を使用することができます。