I have 5 columns in a table. In column 1 there is a flag name = "strurl1", name = "strurl2", name = "strurl3", etc. If the background color of the table row is selected, then it will change C # f1f1f1 to # e5e5e5.
I tried, but the code is not working.
Core css
.overviewtable tbody tr td { line-height:normal; border-top:1px solid #FFF; border-bottom:1px solid #c4c4c4; height:35px; padding-top:10px; padding-bottom:5px; background-color:#f1f1f1; } .overviewtable tbody tr td.col1 { width:316px; padding-left:15px; border-left:4px solid #FFF; font-size:12px; color:#999999; }
The columns of the table are called col1, col2, col3, col4 and col5.
Any help? Thanks in advance.
source share