/***************table id=lihtne************/

#tabelid{
    width: 100%;
    border: 1px solid black;
    height:  120px;
    text-align: center;
    border-collapse: collapse; /*üks joon border'is*/

}
#tabelid td{
    border: 1px solid black;
    text-align: center;
}
#tabelid tr:nth-child(1) td:nth-child(1){ /*1.rida 1.lahter*/
    background-color: blue;
    width: 10%;
}
#tabelid tr:nth-child(1) td:nth-child(2){ /*2.rida 2.lahter*/
    background-color:  lawngreen;
    width: 10%;
}

#tabelid tr:nth-child(1) td:nth-child(3){ /*3.rida 1.lahter*/
    background-color: blueviolet;
    width: 20%;
}
#tabelid tr:nth-child(1) td:nth-child(4){ /*4.rida 2.lahter*/
    background-color: green ;
    width: 5%;
}
#tabelid tr:nth-child(1) td:nth-child(5){ /*5.rida 2.lahter*/
    background-color: yellow ;
    width: 5%;
}
#tabelid tr:nth-child(1) td:nth-child(6){ /*6.rida 2.lahter*/
    background-color: violet ;
    width: 10%;
}
#tabelid tr:nth-child(2) td:nth-child(1){ /*2.rida 7.lahter*/
    background-color: red ;
    width: 4%;
    height:  90px;


}
#tabelid tr:nth-child(2) td:nth-child(2){ /*8.rida 2.lahter*/
    background-color: tomato ;
    width: 15%;
}
#tabelid tr:nth-child(2) td:nth-child(3){ /*2.rida 2.lahter*/
    background-color: peru ;
    width: 20%;

}
#tabelid tr:nth-child(2) td:nth-child(6){ /*2.rida 2.lahter*/
    background-color: rebeccapurple ;
}
#tabelid tr:nth-child(3) td:nth-child(2){ /*2.rida 2.lahter*/
    background-color: darkblue ;
}
#tabelid tr:nth-child(3) td:nth-child(3){ /*2.rida 2.lahter*/
    background-color:  pink;
}
#tabelid tr:nth-child(3) td:nth-child(4){ /*2.rida 2.lahter*/
    background-color: aqua ;
}




