Answers for "table table-dark table-striped table-hover"

CSS
4

striped tables css

tr:nth-child(even) {
  background-color: #f1f8ff;
}
Posted by: Guest on June-26-2020
1

bootstrap change color table striped

/* Add the following CSS style after loading Bootstrap
	to change the color of table-striped: */

.table-striped>tbody>tr:nth-child(odd)>td, 
.table-striped>tbody>tr:nth-child(odd)>th {
    background-color: red; /* Choose your own color here */
}
Posted by: Guest on June-11-2021

Code answers related to "table table-dark table-striped table-hover"

Browse Popular Code Answers by Language