Jan 25, 2005 #1 jmeckley Programmer Joined Jul 15, 2002 Messages 5,269 Location US I want to format links in a table header different than links not in a table header. Is there a way to write that in CSS without using classes or IDs? Jason Meckley Web Application Developer SSIC
I want to format links in a table header different than links not in a table header. Is there a way to write that in CSS without using classes or IDs? Jason Meckley Web Application Developer SSIC
Jan 25, 2005 1 #2 Vragabond Programmer Joined Jul 23, 2003 Messages 5,100 Location AT Code: th a { color: red; } td a { color: blue; } Red links for the header, blue for the cells. Upvote 0 Downvote