Jan 25, 2005 #1 jmeckley Programmer Jul 15, 2002 5,269 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 Jul 23, 2003 5,100 AT Code: th a { color: red; } td a { color: blue; } Red links for the header, blue for the cells. Upvote 0 Downvote