Answers for "bootstrap-table css theme"

-1

bootstrap responsive table

<div class="table-responsive-sm">
  <table class="table">
    ...
  </table>
</div>
Posted by: Guest on March-01-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