Search
 
SCRIPT & CODE EXAMPLE
 

CSS

bootstrap table striped change color

tr:nth-child(odd) {
    background-color: lightskyblue;
    }

   tr:nth-child(even) {
    background-color: lightpink;
    }

    th {
       background-color: lightseagreen;
    }
Comment

Bootstrap table small

<table class="table table-sm">
  ...
</table>
Comment

striped table bootstrap

// Add the table and table striped class from bootstrap
<table class="table table-striped">
Comment

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 */
}
Comment

PREVIOUS NEXT
Code Example
Css :: create circle in css 
Css :: css background gradient 
Css :: css clippath 
Css :: important css 
Css :: bootstrap mb 
Css :: how to put something on layers css 
Css :: scss npm import 
Css :: DOM element add multiple attributes 
Css :: overflow-y scroll css 
Css :: what is the best way to center a div 
Css :: how to modify select icon csshow to modify select icon css 
Css :: spinner in html css react 
Css :: bounced in css animation 
Css :: backdrop filter all properties 
Css :: subtract height css 
Css :: how to style the button 
Css :: last child of last child tailwind 
Css :: make footer stick to bottom without overlap over other elements 
Css :: text sliding css 
Css :: id ends with css 
Css :: target button of fileinput css 
Css :: css border radius first element and last element 
Css :: CSS Reference element height 
Css :: glass style css 
Css :: nth child 
Css :: Sass @mixin and @include 
Css :: text-align attribute in css 
Css :: css flex container 
Css :: padding makes div overflow 
Css :: css animation not smooth site:stackoverflow.com 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =