Newer
Older
git_practice_2019 / html5_css3 / table.css
@sasaki sasaki on 16 Jul 2019 559 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;
}

td:nth-child(n+2){
    text-align: right;
}

p{margin-bottom: 20px}
#sidebar p:last-child{margin-bottom: 0; }

tr:last-child{
    font-weight: bolder;
}

td:last-child{
    font-weight: bolder;
}

tr:last-child td:last-child{
    font-size:24px;
}

tr:nth-last-child(-n+3) td{
    text-align: right;
}