Добрый день
Решил задание, можно ли что-то добавить или исправить?
body {
width: 350px;
margin: 0;
padding: 0 10px;
font-size: 14px;
font-family: "Arial", sans-serif;
}
table {
border-collapse: collapse;
width: 100%;
}
th {
background-color: darkcyan;
color: white;
padding: 10px;
width:33%;
border-top: 1px solid black;
border-bottom: 1px solid black;
}
.firtth {
text-align: left;
}
.lastth {
text-align: right;
}
.centr {
background-color: lightblue;
}
td {
padding: 10px;
border-bottom: 1px solid lightgray;
border-top: 1px solid lightgray;
}
tr:nth-child(2n+1) {
background-color: lightyellow;
}
td:last-child {
text-align: right;
}
td:nth-child(2):not(.lattern) {
text-align: center;
}
td:first-child {
text-align: left;
}