Newer
Older
git_practice_2019 / html5_css3 / table2.css
@sasaki sasaki on 16 Jul 2019 255 bytes add in rinkou4
table{
    width: 600px;
    border-collapse: collapse;
}

th, td{
    border: none;
}

th{
    background-color: #11d4f2;
    color: #000000;
}

tr:nth-of-type(even){
    background-color: #f3f3f3;
}

tr:nth-of-type(odd){
    background-color: #dddddd;
}