html - css issue in table, styling not showing fully -
got styled css table reason row styling being cut off, css inspector showing obvious error. attached css , table
example of issue see codepen
using background on td instead of tr solve problem.
table.striped tr:nth-child(even) td { background-color: #fff; } table.striped tr:nth-child(odd) td{ background-color: #efefef; }
Comments
Post a Comment