Forum Moderators: not2easy
An example would be the first row of a table which contains the headers for each column. I want to be able to put a thick black line between this header and the start of the data...can I do this using the TR and not the TD?
thanks
Mike
[w3.org ]
Using <th> instead of <td> in the header row would allow you to style the first row without needing to add any classes. Taking advantage of <thead> and tedster's descendant selector would be an alternative.
I'd still follow MatthewHSE's route and use images though.
The best tip I can give is to Google for 'Tables For Tabular Data' and Stephen Ferg's 'Techniques for Accessible HTML Tables'. I guarantee that you'll learn loads of things that'll make styling tables a doddle.