Answers for "bootstrap table invisible"

1

Bootstrap table small

<table class="table table-sm">
  ...
</table>
Posted by: Guest on October-11-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

Browse Popular Code Answers by Language