if you have this in a external CSS file : td { FONT-SIZE: 7.25pt; COLOR: #008060; FONT-FAMILY: 'verdana'; BACKGROUND-COLOR: #e9eeea; TEXT-ALIGN: left } td.normalTd { } Is there a way to set all the attributes changed in the first "default" class back to their default value in normalTD ?
Not sure what you are asking; but if you mean to override the previous settings in the td tag, you could do: td.normalTd { font-size: auto; (or whatever your default value is) color: whatever your default color is BACKGROUND-COLOR: whatever your default color is; text-align: right; (or whatever your default value is) } Code (markup):