Answers for "bootstrap table dark border"

CSS
1

bootstrap table striped change color

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

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

    th {
       background-color: lightseagreen;
    }
Posted by: Guest on November-23-2021
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

Browse Popular Code Answers by Language