Answers for "bootstrap change color table striped"

CSS
1

striped table bootstrap

// Add the table and table striped class from bootstrap
<table class="table table-striped">
Posted by: Guest on May-27-2021
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 "bootstrap change color table striped"

Browse Popular Code Answers by Language