Da un id alla tabella a cui vuoi applicare queste regole e poi indica l'id come selerrore, per esempio
<table id="da_evidenziare" ... >
e nel CSS
#da_evidenziare table ....
Da un id alla tabella a cui vuoi applicare queste regole e poi indica l'id come selerrore, per esempio
<table id="da_evidenziare" ... >
e nel CSS
#da_evidenziare table ....
Grazie mille!!
grazie al to consiglio ho risolto così
Grazie ancoracodice:<style> TABLE#da_daevidenziare tr:nth-child(odd) { background: white; } TABLE#da_daevidenziare tr:nth-child(even) { background: yellow; } </style> <table width="100%" border="0" cellpadding="0" cellspacing="0" id="da_daevidenziare"> .....