Test Code Snippets

CSS code to make a JTRT table look nicer

#jtrt_table_526 thead tbody td {
line-height: 100%;
padding: 10px;
}

#jtrt_table_526 {
width: 100%;
}

#jtrt_table_526 tr:nth-child(even) {
background-color: #f2f2f2;
}

CSS code to insert value into table header cells

#jtrt_table_526 th:nth-child(1)::before {
content: “1”;
float: left;
}

#jtrt_table_526 th:nth-child(2)::before {
content: “2”;
float: left;
}