How to color the rows (one in between) and the table title? - Forum

Forum Navigation
You need to log in to create posts and topics.

How to color the rows (one in between) and the table title?

Hello and good time dear friends ...! How can the rows of a table be one in color? And how can the title of our table be colored? thanks all

To do this, we add the following code to the styles section of our project
.table, td, th {
border: 1px solid red;
}

th {
background-color: # 9CFFFF;
color: black;
}
tr: nth-child (even) {
background: # D0EA2B;
}