Posts

Showing posts with the label Zebra striping table

How to create a zebra stripped table with Html CSS

Image
  Source Code: <! DOCTYPE html > < html > < head > < style >     table {         border-collapse : collapse ;         width : 100% ;     }     th , td {         padding : 0.2rem ;         text-align : right ;         border : 3px solid #ccc ;     }     tbody tr:nth-child (odd){         background : rgb ( 173 , 168 , 168 );     } </ style > </ head > < body >     < h1 > Zebra Tables </ h1 >     < table class = "ZEBRA" >         < thead >             < tr >                 < th > Date </ th >                 < th > Sales </ th >         ...